From abaf667a822004b15453baade3aceb73bdf0722e Mon Sep 17 00:00:00 2001 From: timotheegoguely Date: Tue, 17 Sep 2024 17:23:59 +0200 Subject: [PATCH] Update router.js: add notifications and reunions --- src/router/router.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/router/router.js b/src/router/router.js index 0380d96..f3345e2 100644 --- a/src/router/router.js +++ b/src/router/router.js @@ -1,5 +1,7 @@ import { createWebHistory, createRouter } from "vue-router"; import Home from "../views/Home.vue"; +import Notifications from "../views/Notifications.vue"; +import Reunions from "../views/Reunions.vue"; import Inspirations from "../views/Inspirations.vue"; import { useApiStore } from "../stores/api"; import { usePageStore } from "../stores/page"; @@ -10,6 +12,14 @@ const routes = [ path: "/", component: Home, }, + { + path: "/notifications", + component: Notifications, + }, + { + path: "/reunions", + component: Reunions, + }, { path: "/inspirations", component: Inspirations,