1
13693261870
2022-09-19 5589d397ff07a023d052ee44c62f52f583572354
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
import store from "./store";
import "./assets/css/global.css";
 
import axios from "./http";
import ElementUI from "element-ui";
import "element-ui/lib/theme-chalk/index.css";
Vue.prototype.$echarts = echarts;
import * as echarts from "echarts";
Vue.use(ElementUI);
Vue.prototype.$http = axios;
Vue.prototype.$bus = new Vue();
Vue.config.productionTip = false;
 
new Vue({
  router,
  store,
  render: (h) => h(App),
}).$mount("#app");