import { createApp } from 'vue' import { createPinia } from 'pinia' import ElementPlus from 'element-plus' import 'element-plus/dist/index.css' import * as ElementPlusIconsVue from '@element-plus/icons-vue' // @ts-ignore import zhCn from 'element-plus/dist/locale/zh-cn.mjs' import App from './App.vue' import router from './router' import './style/index.scss' const app = createApp(App) // 注册Element Plus图标 for (const [key, component] of Object.entries(ElementPlusIconsVue)) { app.component(key, component) } app.use(createPinia()) app.use(router) app.use(ElementPlus, { locale: zhCn, }) app.mount('#app')