This commit is contained in:
2022-06-08 11:40:39 +02:00
parent a0e273b4d1
commit 3fb60a8499
19 changed files with 9610 additions and 101 deletions
+6
View File
@@ -0,0 +1,6 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
createApp(App).use(store).use(router).mount('#app')