From 1e2ad8554703e06c5ecd0edcc1d9c4ff23a2377b Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Thu, 7 Dec 2023 20:33:17 -0700 Subject: [PATCH] add dedicated help page for looking into notifications --- src/router/index.ts | 8 ++++ src/views/HelpNotificationsView.vue | 65 +++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 src/views/HelpNotificationsView.vue diff --git a/src/router/index.ts b/src/router/index.ts index 49b3376..af3e32c 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -91,6 +91,14 @@ const routes: Array = [ component: () => import(/* webpackChunkName: "help" */ "../views/HelpView.vue"), }, + { + path: "/help-notifications", + name: "help-notifications", + component: () => + import( + /* webpackChunkName: "help-notifications" */ "../views/HelpNotificationsView.vue" + ), + }, { path: "/identity-switcher", name: "identity-switcher", diff --git a/src/views/HelpNotificationsView.vue b/src/views/HelpNotificationsView.vue new file mode 100644 index 0000000..ce9c0a1 --- /dev/null +++ b/src/views/HelpNotificationsView.vue @@ -0,0 +1,65 @@ + +