Files
JudoWeb/GUI/src/main.ts
Jonas 74cfa283a1 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.
2025-10-04 16:43:09 +02:00

16 lines
257 B
TypeScript

import { createApp } from 'vue'
import App from './Layout.vue'
import router from './router'
import vuetify from './plugins/vuetify'
// Global CSS
import "./css/global.css"
const app = createApp(App)
app.use(router)
app.use(vuetify);
app.mount('#app')