0
0
Fork 0

Initialize default Vue HTML data

This commit is contained in:
Oliver-Akins 2020-12-07 20:33:21 -07:00
parent f7b571269e
commit 919135eb87
4 changed files with 39 additions and 0 deletions

10
web/src/main.js Normal file
View file

@ -0,0 +1,10 @@
import Vue from 'vue'
import App from './App.vue'
import store from './store'
Vue.config.productionTip = false
new Vue({
store,
render: h => h(App)
}).$mount('#app')