This commit is contained in:
2020-07-01 19:57:10 +02:00
commit 3adef6ee28
37 changed files with 9641 additions and 0 deletions

13
src/main.ts 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");