You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
465 B
16 lines
465 B
import { createApp } from 'vue' |
|
import router from './router/index' |
|
import { createPinia } from 'pinia' |
|
import App from './App.vue' |
|
import IconComponent from '@/components/Icon.vue' |
|
import ElementPlus from 'element-plus' |
|
import zhCn from 'element-plus/dist/locale/zh-cn.mjs' |
|
|
|
import './assets/style/style.scss' |
|
|
|
createApp(App) |
|
.use(router) |
|
.use(ElementPlus, { locale: zhCn }) |
|
.use(createPinia()) |
|
.component('Icon', IconComponent) |
|
.mount('#app')
|
|
|