UI checkin
This commit is contained in:
parent
94ef333bfc
commit
60bd88c4f5
8 changed files with 282 additions and 149 deletions
28
src/modules/04_checkin/router.ts
Normal file
28
src/modules/04_checkin/router.ts
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
/**
|
||||
* Router Checkin
|
||||
*/
|
||||
|
||||
const Checkin = () => import("@/modules/04_checkin/views/Checkin.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-out",
|
||||
name: "Checkout",
|
||||
component: Checkout,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [7],
|
||||
},
|
||||
}, */
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue