Update router.js: add notifications and reunions
This commit is contained in:
parent
a7caa79d47
commit
abaf667a82
1 changed files with 10 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue