hrms-user/src/modules/04_checkin/router.ts
2023-10-12 02:55:07 +07:00

38 lines
640 B
TypeScript

/**
* Router Checkin
*/
const Checkin = () => import("@/modules/04_checkin/views/Checkin.vue")
const History = () => import("@/modules/04_checkin/views/history.vue")
/* const Checkout = () => import("@/modules/04_checkin/views/Checkout.vue");
*/
export default [
{
path: "/check-in",
name: "Checkin",
component: Checkin,
meta: {
Auth: true,
Key: [7],
},
},
{
path: "/check-in/history",
name: "History",
component: History,
meta: {
Auth: true,
Key: [7],
},
},
/* {
path: "/check-out",
name: "Checkout",
component: Checkout,
meta: {
Auth: true,
Key: [7],
},
}, */
]