hrms-mgt/src/modules/04_registryNew/router.ts

15 lines
262 B
TypeScript
Raw Normal View History

2024-02-06 11:58:23 +07:00
const mainPage = () => import("@/modules/04_registryNew/views/main.vue");
export default [
{
path: "/registry-new",
name: "registryNew",
component: mainPage,
meta: {
Auth: true,
Key: [7],
2024-02-06 11:58:23 +07:00
Role: "organization",
},
},
];