initial vue template

This commit is contained in:
Niels Kooiman
2019-08-14 08:51:48 +02:00
parent 77ce456e11
commit 145f191fa5
36 changed files with 11654 additions and 1 deletions

11
src/main.ts Normal file
View File

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