/** * Router ระบบทะเบียนประวัติลูกจ้าง (registryEmployee) */ const Main = () => import("@/modules/08_registryEmployee/views/Main.vue"); // const Detail = () => // import("@/modules/08_registryEmployee/components/Profile.vue"); export default [ { path: "/registryEmployee", name: "registryEmployee", component: Main, meta: { Auth: true, Key: [9], Role: "registryEmployee", }, }, // { // path: "/registryEmployee/:id", // name: "registryEmployeeDetail", // component: Detail, // meta: { // Auth: true, // Key: [9], // Role: "registryEmployeeDetails", // }, // }, ];