12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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
- }
- },
- {
- path: "/able/iconSelect",
- name: "reIconSelect",
- component: () => import("/@/views/able/icon-select.vue"),
- meta: {
- title: $t("menus.hsIconSelect"),
- i18n: true
- }
- }
- ]
- };
- export default ableRouter;
|