Footer hinzugefügt, alles für den ersten Test-Build fertig gemacht

This commit is contained in:
R40fendt
2025-04-05 22:21:17 +02:00
parent df0b91cc2b
commit 6687352a7e
10 changed files with 109 additions and 92 deletions

11
src/router/index.ts Normal file
View File

@@ -0,0 +1,11 @@
import { createMemoryHistory, createRouter } from 'vue-router'
const routes = [
{ path: '/', component: () => import('../Main.vue') }
]
export default createRouter({
history: createMemoryHistory(),
routes,
});