hrms-mgt/src/modules/03_recruitingNew/router.ts

15 lines
264 B
TypeScript
Raw Normal View History

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