董国庆
2025-03-24 1149bde3db1d230eb1ff357e0639b7a003fbbcb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'
 
Vue.prototype.$echarts = echarts
Vue.config.productionTip = false
 
new Vue({
  router,
  store,
  render: h => h(App)
}).$mount('#app')