Update router.js: add notifications and reunions

This commit is contained in:
Timothée Goguely 2024-09-17 17:23:59 +02:00
parent a7caa79d47
commit abaf667a82

View file

@ -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,