mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-03 13:44:47 +08:00
47 lines
972 B
TypeScript
47 lines
972 B
TypeScript
import { $t } from "/@/plugins/i18n";
|
|
const Layout = () => import("/@/layout/index.vue");
|
|
|
|
const ableRouter = {
|
|
path: "/able",
|
|
name: "components",
|
|
component: Layout,
|
|
redirect: "/able/menuTree",
|
|
meta: {
|
|
icon: "ubuntu-fill",
|
|
title: $t("menus.hsAble"),
|
|
i18n: true,
|
|
rank: 3
|
|
},
|
|
children: [
|
|
{
|
|
path: "/able/menuTree",
|
|
name: "reMenuTree",
|
|
component: () => import("/@/views/able/menu-tree.vue"),
|
|
meta: {
|
|
title: $t("menus.hsMenuTree"),
|
|
i18n: true
|
|
}
|
|
},
|
|
{
|
|
path: "/able/watermark",
|
|
name: "reWatermark",
|
|
component: () => import("/@/views/able/watermark.vue"),
|
|
meta: {
|
|
title: $t("menus.hsWatermark"),
|
|
i18n: true
|
|
}
|
|
},
|
|
{
|
|
path: "/able/print",
|
|
name: "rePrint",
|
|
component: () => import("/@/views/able/print.vue"),
|
|
meta: {
|
|
title: $t("menus.hsPrint"),
|
|
i18n: true
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default ableRouter;
|