feat: add analytics

This commit is contained in:
2026-01-19 21:40:10 +01:00
parent 0fd6bdaeb3
commit aac4d194e3
19 changed files with 1940 additions and 347 deletions

View File

@@ -1,6 +1,7 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomePage from './pages/HomePage.vue'
import ExtractPage from './pages/ExtractPage.vue'
import AnalyticsPage from './pages/AnalyticsPage.vue'
const routes = [
{
@@ -12,6 +13,11 @@ const routes = [
path: '/extract',
name: 'extract',
component: ExtractPage
},
{
path: '/analytics',
name: 'analytics',
component: AnalyticsPage
}
]