refactor: route and fn name

This commit is contained in:
Methapon2001 2024-08-02 16:13:22 +07:00
parent ae4bf285a0
commit f5db816496
2 changed files with 14 additions and 4 deletions

View file

@ -23,7 +23,17 @@ const routes: RouteRecordRaw[] = [
},
{
path: '/customer-management',
name: 'customerManagement',
name: 'CustomerManagement',
component: () => import('pages/03_customer-management/MainPage.vue'),
},
{
path: '/customer-management/:customerId',
name: 'CustomerSpecificManagement',
component: () => import('pages/03_customer-management/MainPage.vue'),
},
{
path: '/customer-management/:customerId/branch',
name: 'CustomerBranchManagement',
component: () => import('pages/03_customer-management/MainPage.vue'),
},
{