feat: home view and list per url
TS Lint / Oxlint (push) Successful in 45s
TS Lint / TypeScript (push) Successful in 52s
TS Lint / ESLint (push) Successful in 57s

This commit is contained in:
2026-07-14 12:56:55 +02:00
parent 64232dfaca
commit ab41b5d024
9 changed files with 95 additions and 34 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ const router = createRouter({
history: createWebHistory(),
routes: [
{ path: "/", component: HomeView },
{ path: "/:pathMatch([\\w-]+)", component: ListView },
{ path: "/:list", component: ListView },
{ path: "/:pathMatch(.*)", component: NotFoundView },
],
});