You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 line
281 B

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