mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08: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')
|