mirror of
https://github.com/gotoeasy/glogcenter.git
synced 2025-09-15 12:58:34 +08:00
21 lines
510 B
JavaScript
21 lines
510 B
JavaScript
import { createApp } from 'vue'
|
|
import App from './App.vue'
|
|
import 'element-plus/dist/index.css'
|
|
import ElementPlus from 'element-plus'
|
|
import zhCn from 'element-plus/es/locale/lang/zh-cn'
|
|
|
|
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
|
|
|
import router from './router'
|
|
let app = createApp(App)
|
|
app.use(ElementPlus,{
|
|
locale: zhCn,
|
|
})
|
|
app.use(router)
|
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
|
app.component(key, component)
|
|
app.use(component)
|
|
}
|
|
|
|
app.mount('#app')
|