26 lines
524 B
TypeScript
26 lines
524 B
TypeScript
const supportMain = () => import("@/modules/00_support/views/MainPage.vue");
|
|
const supportCategory = () =>
|
|
import("@/modules/00_support/views/ManageCategory.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",
|
|
},
|
|
},
|
|
];
|