mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
24 lines
484 B
TypeScript
24 lines
484 B
TypeScript
import { $t } from "@/plugins/i18n";
|
|
import { editor } from "@/router/enums";
|
|
|
|
export default {
|
|
path: "/editor",
|
|
redirect: "/editor/index",
|
|
meta: {
|
|
icon: "ep: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
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|