/** * 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], }, }, */ ]