mirror of
https://github.com/fatedier/frp.git
synced 2025-01-25 07:18:48 +01:00
13 lines
221 B
TypeScript
13 lines
221 B
TypeScript
|
import { createApp } from 'vue'
|
||
|
import 'element-plus/dist/index.css'
|
||
|
import App from './App.vue'
|
||
|
import router from './router'
|
||
|
|
||
|
import './assets/custom.css'
|
||
|
|
||
|
const app = createApp(App)
|
||
|
|
||
|
app.use(router)
|
||
|
|
||
|
app.mount('#app')
|