Created
March 18, 2020 11:06
-
-
Save willchambers99/e3cfc8b96fd1b19f58682c3028899dc8 to your computer and use it in GitHub Desktop.
a template for a vue project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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