24 lines
622 B
JavaScript
24 lines
622 B
JavaScript
import { createApp } from "vue";
|
|
import { createPinia } from "pinia";
|
|
|
|
import App from "./App.vue";
|
|
import router from "./router";
|
|
|
|
import ElementPlus from "element-plus";
|
|
import zhCn from "element-plus/es/locale/lang/zh-cn";
|
|
//导入图标组件
|
|
import * as ElementPlusIconsVue from "@element-plus/icons-vue";
|
|
import "element-plus/dist/index.css";
|
|
|
|
import "@/assets/styles/index.scss";
|
|
|
|
const app = createApp(App);
|
|
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
|
app.component(key, component);
|
|
}
|
|
app.use(ElementPlus, { locale: zhCn });
|
|
app.use(createPinia());
|
|
app.use(router);
|
|
|
|
app.mount("#app");
|