import './assets/main.css'
|
|
import { createApp } from 'vue'
|
import { createPinia } from 'pinia'
|
|
import ElementPlus from "element-plus";
|
import * as ElementPlusIconsVue from "@element-plus/icons-vue";
|
import "element-plus/dist/index.css";
|
import zhCn from "element-plus/es/locale/lang/zh-cn";
|
|
import "@/assets/js/axios";
|
import "@/permission";
|
import './assets/js/unCtrl';
|
|
import App from './App.vue'
|
import router from './router'
|
import config from '@/assets/js/config';
|
|
document.title = config.title;
|
|
const app = createApp(App)
|
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
app.component(key, component);
|
}
|
|
app.use(createPinia())
|
app.use(ElementPlus, { locale: zhCn });
|
app.use(router)
|
|
app.mount('#app')
|