main.js 280 B

1234567891011121314
  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. import router from './router'
  4. Vue.prototype.$bus = new Vue()
  5. Vue.prototype.$cdn = 'https://4d-tjw.oss-cn-shenzhen.aliyuncs.com/uic/'
  6. Vue.config.productionTip = false
  7. new Vue({
  8. router,
  9. render: h => h(App)
  10. }).$mount('#app')