Skip to content

Instantly share code, notes, and snippets.

@willchambers99
Created March 18, 2020 11:06
Show Gist options
  • Save willchambers99/e3cfc8b96fd1b19f58682c3028899dc8 to your computer and use it in GitHub Desktop.
Save willchambers99/e3cfc8b96fd1b19f58682c3028899dc8 to your computer and use it in GitHub Desktop.
a template for a vue project
import Vue from 'vue'
import App from './App'
import router from 'router'
import vuetify from './plugins/vuetify'
Vue.config.productionTip = false
new Vue({
router,
vuetify,
render: h => h(App)
}).$mount('#app')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment