main.js 294 B

12345678910111213141516
  1. import Vue from 'vue'
  2. import './plugins/vuetify'
  3. import App from './App.vue'
  4. import router from './router'
  5. import axios from 'axios'
  6. import store from './store'
  7. Vue.config.productionTip = false
  8. Vue.prototype.$ajax = axios
  9. new Vue({
  10. router,
  11. store,
  12. render: h => h(App)
  13. }).$mount('#app')