Add basic routing and layout structure

Replaced App.vue with Layout.vue to serve as the main layout. Added Home and 404NotFound route components and configured router to handle home and fallback routes. Updated main.ts to use the new layout component.
This commit is contained in:
2025-10-04 16:43:09 +02:00
parent 9ccfd2e526
commit 74cfa283a1
6 changed files with 49 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
import { createApp } from 'vue'
import App from './App.vue'
import App from './Layout.vue'
import router from './router'
import vuetify from './plugins/vuetify'