feat: route to product and service

This commit is contained in:
oat_dev 2024-06-10 16:42:40 +07:00
parent d270e04ce7
commit 7bac214529
2 changed files with 6 additions and 1 deletions

View file

@ -31,7 +31,7 @@ const labelMenu = ref<{ label: string; icon: string; route: string }[]>([
{
label: 'drawerProductsAndServices',
icon: 'raphael:package',
route: '',
route: '/product-service',
},
{ label: 'drawerQuotation', icon: 'raphael:package', route: '' },
{ label: 'drawerRequestList', icon: 'raphael:package', route: '' },

View file

@ -26,6 +26,11 @@ const routes: RouteRecordRaw[] = [
name: 'customerManagement',
component: () => import('pages/03_customer-management/MainPage.vue'),
},
{
path: '/product-service',
name: 'productAndService',
component: () => import('pages/04_product-service/MainPage.vue'),
},
],
},