This commit is contained in:
Thomas
2020-07-23 16:51:34 +02:00
commit 0ef9ba675b
44 changed files with 13406 additions and 0 deletions

13
client/src/main.js Normal file
View File

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