hrms-mgt/src/modules/00_support/router.ts
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2192846af8 router => fix
2024-07-17 09:20:24 +07:00

39 lines
773 B
TypeScript

const supportMain = () => import("@/modules/00_support/views/MainPage.vue");
const supportCategory = () =>
import("@/modules/00_support/views/ManageCategory.vue");
// const testView = () => import("@/views/TestManagement.vue");
export default [
{
path: "/support",
name: "support",
component: supportMain,
meta: {
Auth: true,
Key: [1.1],
Role: "support",
},
},
{
path: "/support/category",
name: "supportCategory",
component: supportCategory,
meta: {
Auth: true,
Key: [1.1],
Role: "support",
},
},
// {
// path: "/test",
// name: "testView",
// component: testView,
// meta: {
// Auth: true,
// Key: [1.1],
// Role: "support",
// },
// },
];