mirror of
https://gitee.com/xiangheng/x_admin.git
synced 2025-12-24 08:12:55 +08:00
20 lines
412 B
TypeScript
20 lines
412 B
TypeScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import install from './install'
|
|
import './permission'
|
|
import 'element-plus/dist/index.css'
|
|
import './styles/index.scss'
|
|
|
|
import 'virtual:svg-icons-register'
|
|
|
|
import ElementPlus from 'element-plus'
|
|
|
|
import VForm3 from 'vform3-builds' //引入VForm3库
|
|
|
|
const app = createApp(App)
|
|
app.use(install)
|
|
app.use(ElementPlus)
|
|
app.use(VForm3)
|
|
|
|
app.mount('#app')
|