edit name import

This commit is contained in:
Kittapath 2023-10-12 02:55:07 +07:00
parent 5552055d65
commit cc5c44a5f6
3 changed files with 89 additions and 100 deletions

View file

@ -2,31 +2,31 @@
* Router Checkin
*/
const Checkin = () => import("@/modules/04_checkin/views/CheckIn.vue");
const History = () => import("@/modules/04_checkin/views/History.vue");
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-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,
@ -35,4 +35,4 @@ export default [
Key: [7],
},
}, */
];
]