Skip to content

Instantly share code, notes, and snippets.

@johnleider
Last active March 6, 2019 17:36
Show Gist options
  • Save johnleider/899b8909359f403a26404e293d1ab922 to your computer and use it in GitHub Desktop.
Save johnleider/899b8909359f403a26404e293d1ab922 to your computer and use it in GitHub Desktop.
// src/main.js
import Vue from 'vue'
import './plugins/base'
import './plugins/vuetify'
import App from './App.vue'
import router from './router'
import store from './store'
Vue.config.productionTip = false
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment