suche (angefangen) und kleine änderungen

kleine veränderungen
suche anfangen -> filter und suche ansich geht nicht
This commit is contained in:
danielvici123
2025-02-05 20:35:29 +01:00
parent 8b4b99a015
commit bb2cfedb84
12 changed files with 270 additions and 20 deletions

View File

@@ -9,8 +9,9 @@ import wip from "../components/wip.vue";
import settings from "../components/settings.vue";
import nottifications from "../components/notifications.vue";
import register from "../components/register.vue";
import search from "../components/search.vue";
// The routing does not happen automatically
// Each route has to be defined here, or it wont work.
// Each route has to be defined here, or it won't work.
const routes = [
{
path: "/",
@@ -41,6 +42,11 @@ const routes = [
path: "/register",
name: "Register",
component: register,
},
{
path: "/search",
name: "Search",
component: search,
}
]