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");
|