Surpriseplus
2022-10-26 62ae55ae397b7997b147a7b946f7ad5f1c78a45d
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
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 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';
Vue.use(ElementUI, { locale });
Vue.prototype.$http = axios;
Vue.prototype.$bus = new Vue();
Vue.config.productionTip = false;
 
new Vue({
  router,
  i18n,
  store,
 
  render: (h) => h(App),
}).$mount('#app');