Blame view

稻城亚丁小程序/admin-web/src/main.ts 560 Bytes
bc518174   王天杨   提交两个项目文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  import { createApp } from "vue";
  import { createPinia } from "pinia";
  import ElementPlus from "element-plus";
  import "element-plus/dist/index.css";
  import zhCn from "element-plus/es/locale/lang/zh-cn";
  import * as ElementPlusIconsVue from "@element-plus/icons-vue";
  import App from "./App.vue";
  import router from "./router";
  
  const app = createApp(App);
  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");