Skip to content

Instantly share code, notes, and snippets.

@mfaridzia
Last active April 2, 2018 17:20
Show Gist options
  • Save mfaridzia/ad31b87a1e2f64db6a19f890d5e8d8f5 to your computer and use it in GitHub Desktop.
Save mfaridzia/ad31b87a1e2f64db6a19f890d5e8d8f5 to your computer and use it in GitHub Desktop.
import Vue from 'vue'
import App from './App'
import router from './router'
import store from './store/index'
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
store,
components: { App },
template: '<App/>'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment