1234567891011121314151617181920212223 |
- import { $t } from "@/plugins/i18n";
- import { editor } from "@/router/enums";
- export default {
- path: "/editor",
- redirect: "/editor/index",
- meta: {
- icon: "edit",
- title: $t("menus.hseditor"),
- rank: editor
- },
- children: [
- {
- path: "/editor/index",
- name: "Editor",
- component: () => import("@/views/editor/index.vue"),
- meta: {
- title: $t("menus.hseditor"),
- keepAlive: true
- }
- }
- ]
- } as RouteConfigsTable;
|