Initial vue commit

This commit is contained in:
Joel Collins 2019-01-28 09:53:22 +00:00
parent b561513c4f
commit 859ffc2496
21 changed files with 11115 additions and 651 deletions

10
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')