add some shit

This commit is contained in:
2026-09-08 17:15:33 +02:00
parent b65f46afd8
commit e300915144
8 changed files with 68 additions and 3 deletions
+2
View File
@@ -1,12 +1,14 @@
import { createRouter, createWebHistory } from 'vue-router';
import App from '../App.vue';
import HomeView from '../pages/HomeView.vue';
import LegalView from '../pages/LegalView.vue';
const routes = [
{ path: '/',
children:
[
{ path: '', component: HomeView },
{ path: '/legal', component: LegalView },
]
}
];