From ab9b4f229d7d40dc5be0f65a918308e8fadfd955 Mon Sep 17 00:00:00 2001 From: lethdat Date: Sun, 29 Mar 2026 22:41:09 +0700 Subject: [PATCH] feat: add analytics route and component for streaming analytics display --- src/routes/analytics/Analytics.vue | 10 ++++++++++ src/routes/index.ts | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 src/routes/analytics/Analytics.vue diff --git a/src/routes/analytics/Analytics.vue b/src/routes/analytics/Analytics.vue new file mode 100644 index 0000000..2af5b2d --- /dev/null +++ b/src/routes/analytics/Analytics.vue @@ -0,0 +1,10 @@ + \ No newline at end of file diff --git a/src/routes/index.ts b/src/routes/index.ts index 2c664ae..32049b7 100644 --- a/src/routes/index.ts +++ b/src/routes/index.ts @@ -117,6 +117,16 @@ const routes: RouteData[] = [ }, ], }, + { + path: "analytics", + name: "analytics", + component: () => import("./analytics/Analytics.vue"), + meta: { + head: { + title: "Analytics - Holistream", + }, + }, + }, { path: "notification", name: "notification",