19 lines
425 B
JavaScript
19 lines
425 B
JavaScript
import Vue from "vue";
|
|
import App from "./App.vue";
|
|
import "./registerServiceWorker";
|
|
import router from "./router";
|
|
import store from "./store";
|
|
import "amfe-flexible";
|
|
// 全局引入Echarts;
|
|
import * as echarts from "echarts";
|
|
// 然后挂载在vue原型上;
|
|
import "echarts-gl";
|
|
Vue.prototype.$echarts = echarts;
|
|
Vue.config.productionTip = false;
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: (h) => h(App),
|
|
}).$mount("#app");
|