diff --git a/src/components/DrawerComponent.vue b/src/components/DrawerComponent.vue index 805ad36e..73edee2c 100644 --- a/src/components/DrawerComponent.vue +++ b/src/components/DrawerComponent.vue @@ -26,7 +26,7 @@ const labelMenu = ref<{ label: string; icon: string; route: string }[]>([ { label: 'drawerCustomerManagement', icon: 'mdi-account-settings-outline', - route: '', + route: '/customer-management', }, { label: 'drawerProductsAndServices', diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue new file mode 100644 index 00000000..d879ed07 --- /dev/null +++ b/src/pages/03_customer-management/MainPage.vue @@ -0,0 +1,5 @@ + + + + + diff --git a/src/router/routes.ts b/src/router/routes.ts index ca05d277..a5148823 100644 --- a/src/router/routes.ts +++ b/src/router/routes.ts @@ -21,6 +21,11 @@ const routes: RouteRecordRaw[] = [ name: 'PersonnelManagement', component: () => import('pages/02_personnel-management/MainPage.vue'), }, + { + path: '/customer-management', + name: 'customerManagement', + component: () => import('pages/03_customer-management/MainPage.vue'), + }, ], },