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