Skip to content

Instantly share code, notes, and snippets.

@erisu
Created October 23, 2018 23:29
Show Gist options
  • Save erisu/c6d8bdef4006f0534e02e3a813bceeef to your computer and use it in GitHub Desktop.
Save erisu/c6d8bdef4006f0534e02e3a813bceeef to your computer and use it in GitHub Desktop.
app.js for PWA Vue.js Project
import Vue from 'vue'
import App from './App.vue'
import router from './router'
Vue.config.productionTip = false
new Vue({
el: '#app',
router,
components: { App },
template: '<App/>'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment