18 lines
500 B
TypeScript
18 lines
500 B
TypeScript
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
import ElementPlus from 'element-plus'
|
|
import 'element-plus/dist/index.css'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import 'virtual:svg-icons-register'
|
|
import SvgIcon from '@/components/SvgIcon'
|
|
import elementIcons from '@/components/SvgIcon/svgicon'
|
|
const app = createApp(App)
|
|
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
app.use(ElementPlus)
|
|
app.use(elementIcons)
|
|
app.component('svg-icon', SvgIcon)
|
|
|
|
app.mount('#app') |