hrms-mgt/src/modules/17_acting/router.ts
2024-06-18 16:42:40 +07:00

14 lines
246 B
TypeScript

const mainPage = () => import("@/modules/17_acting/views/main.vue");
export default [
{
path: "/acting",
name: "acting",
component: mainPage,
meta: {
Auth: true,
Key: [1],
Role: "organization",
},
},
];