gx
chenyc
2025-06-09 81ced3885266779c3a3813a0e4687962375b1d62
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { createApp } from 'vue';
import pinia from '/@/stores/index';
import App from '/@/App.vue';
import router from '/@/router';
import { directive } from '/@/directive/index';
import { i18n } from '/@/i18n/index';
import other from '/@/utils/other';
import print from 'vue3-print-nb'
import ElementPlus from 'element-plus';
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
import '/@/theme/index.scss';
import VueGridLayout from 'vue-grid-layout';
 
const app = createApp(App);
//您需要从 @element-plus/icons-vue 中导入所有图标并进行全局注册。
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
app.component(key, component)
}
directive(app);
other.elSvg(app);
 
app.use(print).use(pinia).use(router).use(ElementPlus).use(i18n).use(VueGridLayout).mount('#app');