Advertisement
sayhicoelho

Main

Jul 19th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // src/main.js
  2.  
  3. // The Vue build version to load with the `import` command
  4. // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
  5. import Vue from 'vue'
  6. import App from './App'
  7. import router from './router'
  8. import Vuetify from 'vuetify'
  9. import store from './vuex/store'
  10.  
  11. Vue.config.productionTip = false
  12.  
  13. Vue.use(Vuetify)
  14.  
  15. /* eslint-disable no-new */
  16. new Vue({
  17.   el: '#app',
  18.   router,
  19.   store,
  20.   components: { App },
  21.   template: '<App/>'
  22. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement