gjj
2025-02-21 efe41f68868a8926dfc1a6851a492805b56786db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import Vue from "vue";
 
//todo:更改为按需引入
import ElementUI from "element-ui";
import "element-ui/lib/theme-chalk/index.css";
Vue.use(ElementUI);
 
import { http } from "./utils/http.js";
Vue.prototype.$http = http;
 
import store from "./store/index";
import router from "./router";
import App from "./App.vue";
 
import "@css/DIN_font.css";
import "@css/tail-wind/index.css";
import "@css/element-ui-override.scss";
import "@css/self-global.scss";
 
 
Vue.config.productionTip = false;
 
new Vue({
  store,
  router,
  render: (h) => {
    return h(App);
  },
}).$mount("#app");