From a8bdb0eeab472bddd24cc043882ccbd4046fefa1 Mon Sep 17 00:00:00 2001 From: xds Date: Mon, 24 Feb 2025 00:08:17 +0300 Subject: [PATCH] tags and new analytics new in budget --- src/router/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/router/index.ts b/src/router/index.ts index 8d46643..dff18fc 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -15,11 +15,13 @@ import BudgetViewboth from "@/components/budgets/BudgetViewboth.vue"; import SpacesList from "@/components/spaces/SpacesList.vue"; import SpaceInventationView from "@/components/spaces/SpaceInventationView.vue"; import About from "@/components/faq/About.vue"; +import OnboardingView from "@/components/onboarding/OnboardingView.vue"; const routes = [ {path: '/login', component: LoginView}, {path: '/register', component: RegisterView}, - {path: '/', name: 'Aboutmain', component: About, meta: {requiresAuth: true}}, + {path: '/', name: 'Budgets Main', component: BudgetList, meta: {requiresAuth: true}}, + // {path: '/onboarding', name: 'Onboarding', component: OnboardingView, meta: {requiresAuth: true}}, {path: '/about', name: 'About', component: About, meta: {requiresAuth: true}}, {path: '/analytics', name: 'Analytics', component: AnalyticsView, meta: {requiresAuth: true}}, {path: '/spaces', name: 'Spaces', component: SpacesList, meta: {requiresAuth: true}},