feat: จัดการลูกค้า
This commit is contained in:
parent
bd16d0695f
commit
2959a3d8c8
3 changed files with 11 additions and 1 deletions
|
|
@ -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',
|
||||
|
|
|
|||
5
src/pages/03_customer-management/MainPage.vue
Normal file
5
src/pages/03_customer-management/MainPage.vue
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<script setup lang="ts"></script>
|
||||
|
||||
<template></template>
|
||||
|
||||
<style scoped></style>
|
||||
|
|
@ -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'),
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue