- import Vue from 'vue'
- import App from './App.vue'
- import router from './router'
- Vue.prototype.$bus = new Vue()
- Vue.prototype.$cdn = 'https://4d-tjw.oss-cn-shenzhen.aliyuncs.com/uic/'
- Vue.config.productionTip = false
- new Vue({
- router,
- render: h => h(App)
- }).$mount('#app')
|