ประวัติการลงเวลา

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-11-01 11:52:22 +07:00
parent 7d602dbdf9
commit 73bca6f4e9
4 changed files with 250 additions and 12 deletions

View file

@ -1,6 +1,6 @@
import { createRouter, createWebHistory, RouteRecordRaw } from "vue-router";
import HomeView from "../views/HomeView.vue";
import history from "../modules/checkin/views/HistoryView.vue";
const routes: Array<RouteRecordRaw> = [
{
path: "/",
@ -16,6 +16,11 @@ const routes: Array<RouteRecordRaw> = [
component: () =>
import(/* webpackChunkName: "about" */ "../views/AboutView.vue"),
},
{
path: "/check-in/history",
name: "history",
component: history,
},
];
const router = createRouter({