1
Surpriseplus
2022-11-18 8193a3d83d463717b873392b248873fdef0acaa9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import Vue from 'vue';
import App from './App.vue';
import router from './router';
import store from './store';
import './assets/css/global.css';
import i18n from './assets/lang/index';
import axios from './http';
import ElementUI from 'element-ui';
import locale from 'element-ui/lib/locale/lang/en';
import WKT from 'terraformer-wkt-parser';
// import locale from 'element-ui/lib/locale/lang/zh-CN'
import 'element-ui/lib/theme-chalk/index.css';
Vue.prototype.$echarts = echarts;
import * as echarts from 'echarts';
import drag from './JS/drag';
Vue.use(ElementUI, { locale });
Vue.prototype.$http = axios;
Vue.prototype.$bus = new Vue();
Vue.prototype.$wkt = WKT;
Vue.config.productionTip = false;
 
new Vue({
  router,
  i18n,
  store,
 
  render: (h) => h(App),
}).$mount('#app');