feat: Main => branch&personnel router

This commit is contained in:
puriphatt 2024-04-02 13:44:45 +07:00
parent b00e78f45c
commit 63a0bc33f0
5 changed files with 107 additions and 70 deletions

View file

@ -11,6 +11,16 @@ const routes: RouteRecordRaw[] = [
name: 'Home',
component: () => import('pages/MainPage.vue'),
},
{
path: '/branch-management',
name: 'BranchManagement',
component: () => import('pages/01_branch-management/MainPage.vue'),
},
{
path: '/personnel-management',
name: 'PersonnelManagement',
component: () => import('pages/02_personnel-management/MainPage.vue'),
},
],
},