hrms-mgt/src/modules/02_organization/router.ts

15 lines
268 B
TypeScript
Raw Normal View History

2024-08-01 12:12:28 +07:00
const mainPage = () => import("@/modules/02_organization/views/main.vue");
export default [
{
path: "/organization",
name: "organizationalNew",
component: mainPage,
meta: {
Auth: true,
Key: "SYS_ORG",
Role: "STAFF",
},
},
];