From 0f510279b9fb1848fbb9f6ec78daf7d17bcb472e Mon Sep 17 00:00:00 2001 From: whiteyebrw Date: Thu, 12 Dec 2024 14:06:42 +0300 Subject: [PATCH] fix: fixed initial route --- packages/frontend/src/router/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/router/routes.js b/packages/frontend/src/router/routes.js index be6d567..9969a02 100644 --- a/packages/frontend/src/router/routes.js +++ b/packages/frontend/src/router/routes.js @@ -7,7 +7,7 @@ const ImportExportView = () => import('../views/ImportExportView.vue'); export const routes = [ { path: '/registration', component: RegistrationView }, { path: '/login', component: LoginView }, - { path: '/consultant', component: ConsultantsView }, + { path: '/', component: ConsultantsView }, { path: '/consultant/:id', component: ConsultantDetailView }, { path: '/export-import', component: ImportExportView }, ]; \ No newline at end of file