39 lines
773 B
TypeScript
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",
|
|
// },
|
|
// },
|
|
];
|