123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import { createApp } from 'vue'
- import App from './App.vue'
- import router from './router'
- import { loadLang } from '/@/lang/index'
- import { registerIcons } from '/@/utils/common'
- import ElementPlus from 'element-plus'
- import mitt from 'mitt'
- import pinia from '/@/stores/index'
- import { directives } from '/@/utils/directives'
- import 'element-plus/dist/index.css'
- import 'element-plus/theme-chalk/display.css'
- import '/@/styles/index.scss'
- import * as ElementPlusIconsVue from '@element-plus/icons-vue'
- // modules import mark, Please do not remove.
- async function start() {
- const app = createApp(App)
- // 全局注册element-plus的icon
- for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
- app.component(key, component)
- }
-
- app.use(pinia)
- // 全局语言包加载
- await loadLang(app)
- app.use(router)
- app.use(ElementPlus)
- // 全局注册
- directives(app) // 指令
- registerIcons(app) // icons
- app.mount('#app')
- // modules start mark, Please do not remove.
- app.config.globalProperties.eventBus = mitt()
- }
- start()
|