This commit is contained in:
2020-07-04 12:32:17 +02:00
commit e0d1da0042
18 changed files with 11374 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import Vue from 'vue'
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')