first commit

This commit is contained in:
2022-01-21 11:34:23 +01:00
commit bf2ef01f18
26 changed files with 17077 additions and 0 deletions
+10
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');