Guest User

Untitled

a guest
Nov 22nd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import Vue from 'vue'
  2. import App from './App'
  3. import store from './store/index.js'
  4.  
  5. Vue.config.productionTip = false
  6.  
  7. /* eslint-disable no-new */
  8. new Vue({
  9. el: '#app',
  10. store,
  11. template: '<App/>',
  12. components: { App }
  13. })
Add Comment
Please, Sign In to add comment