he wei
2022-09-27 23786b9ef2dc1d9f06dd7d9458e926369aab8c25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import ElementUI from 'element-ui'
import './assets/iconfont/iconfont.css';
import 'element-ui/lib/theme-chalk/index.css'
import Bus from './assets/js/bus'
 
Vue.prototype.$bus = Bus;
 
Vue.config.productionTip = false
 
Vue.use(ElementUI, {
  zIndex: 1099
});
 
new Vue({
  router,
  store,
  render: h => h(App),
}).$mount('#app')