main.ts 345 B

12345678910111213141516171819
  1. import Vue from 'vue'
  2. import App from './App.vue'
  3. import router from './router'
  4. import store from './store'
  5. import config from './config'
  6. import './plugins/iview.js'
  7. Vue.config.productionTip = false
  8. /**
  9. * @description 全局变量注册
  10. */
  11. Vue.prototype.$config = config
  12. new Vue({
  13. router,
  14. store,
  15. render: h => h(App)
  16. }).$mount('#app')