add router

This commit is contained in:
Tim Wundenberg
2021-07-28 18:24:14 +02:00
parent 06d31c558d
commit 21d61f60bf
7 changed files with 80 additions and 20 deletions

View File

@@ -1,4 +1,5 @@
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
createApp(App).mount('#app')
createApp(App).use(router).mount('#app')