hrms-mgt/src/modules/02_organizationalNew/router.ts
2024-07-23 11:11:03 +07:00

14 lines
278 B
TypeScript

const mainPage = () => import("@/modules/02_organizationalNew/views/main.vue");
export default [
{
path: "/organization-new",
name: "organizationalNew",
component: mainPage,
meta: {
Auth: true,
Key: [7],
Role: "organization",
},
},
];