ทะเบียนประวัติลูกจ้าง

This commit is contained in:
AnandaTon 2023-07-03 17:16:37 +07:00
parent ec257e0ddf
commit c8f682fb38
4 changed files with 121 additions and 0 deletions

View file

@ -0,0 +1,30 @@
/**
* Router }6d0hk' (Registry)
*/
const Main = () => import("@/modules/08_registryEmployee/views/Main.vue");
const Detail = () =>
import("@/modules/08_registryEmployee/components/Profile.vue");
export default [
{
path: "/registryEmployee",
name: "registryEmployee",
component: Main,
meta: {
Auth: true,
Key: [9],
Role: "registryEmployee",
},
},
{
path: "/registryEmployee/:id",
name: "registryEmployeeDetail",
component: Detail,
meta: {
Auth: true,
Key: [9],
Role: "registryEmployee",
},
},
];