hrms-mgt/src/modules/05_placement/router.ts

31 lines
596 B
TypeScript
Raw Normal View History

2023-06-01 12:54:58 +07:00
/**
* Router (Placement)
*/
const Main = () => import("@/modules/05_placement/views/Main.vue");
2023-06-02 09:43:28 +07:00
const Detail = () => import("@/modules/05_placement/components/PlacementDetail.vue");
2023-06-01 12:54:58 +07:00
export default [
{
path: "/placement",
name: "placement",
component: Main,
meta: {
Auth: true,
Key: [7],
Role: "placement",
},
},
2023-06-02 09:43:28 +07:00
{
path: "/placement/detail",
name: "placementDetail",
component: Detail,
meta: {
Auth: true,
Key: [7],
Role: "placement",
},
},
2023-06-01 12:54:58 +07:00
];
2023-06-02 09:43:28 +07:00