change some frontend stuff and add new view
Build / Build-image (push) Successful in 54s

This commit is contained in:
2026-08-12 13:04:11 +02:00
parent 11d440c6ed
commit 9b69a2afff
5 changed files with 27 additions and 7 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 SuggestionView from '../pages/SuggestionView.vue';
const routes = [
{ path: '/',
children:
[
{ path: '', component: HomeView },
{ path: '/suggestion', component: SuggestionView },
]
}
];