最新代码
This commit is contained in:
31
src/main.js
31
src/main.js
@ -1,18 +1,27 @@
|
||||
import Vue from "vue";
|
||||
import App from "./App.vue";
|
||||
import router from "./router";
|
||||
import store from "./store";
|
||||
import ElementUI from "element-ui";
|
||||
import "element-ui/lib/theme-chalk/index.css";
|
||||
import Vue from 'vue'
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
import store from './store'
|
||||
import ElementUI from 'element-ui'
|
||||
import 'element-ui/lib/theme-chalk/index.css'
|
||||
|
||||
Vue.config.productionTip = false;
|
||||
Vue.use(ElementUI);
|
||||
import VxeUIAll from 'vxe-pc-ui'
|
||||
import 'vxe-pc-ui/es/style.css'
|
||||
|
||||
const bus = new Vue();
|
||||
Vue.prototype.$bus = bus;
|
||||
import VxeUITable from 'vxe-table'
|
||||
import 'vxe-table/es/style.css'
|
||||
|
||||
Vue.config.productionTip = false
|
||||
|
||||
Vue.use(VxeUIAll)
|
||||
Vue.use(VxeUITable)
|
||||
Vue.use(ElementUI)
|
||||
|
||||
const bus = new Vue()
|
||||
Vue.prototype.$bus = bus
|
||||
|
||||
new Vue({
|
||||
router,
|
||||
store,
|
||||
render: (h) => h(App),
|
||||
}).$mount("#app");
|
||||
}).$mount('#app')
|
||||
|
||||
Reference in New Issue
Block a user