import Vue from 'vue'
|
import App from './App.vue'
|
import './registerServiceWorker'
|
import router from './router'
|
import store from './store'
|
import * as echarts from 'echarts';
|
import 'echarts-gl'
|
import ECharts from 'vue-echarts';
|
import '@/assets/font/font.css'
|
import 'echarts/lib/chart/pie';
|
import 'echarts/lib/chart/bar';
|
import 'echarts/lib/component/tooltip';
|
import 'echarts/lib/component/title';
|
import 'echarts/lib/component/legend';
|
import 'echarts/lib/component/grid';
|
Vue.component('v-chart', ECharts);
|
Vue.prototype.$echarts = echarts
|
Vue.config.productionTip = false
|
|
new Vue({
|
router,
|
store,
|
render: h => h(App)
|
}).$mount('#app')
|