hrms-checkin/src/modules/checkin/router.ts
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 b770d6f989 no message
2023-11-01 11:03:56 +07:00

38 lines
680 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],
},
}, */
];