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 { guide } from "@/router/enums";
|
|
import Guide from "@iconify-icons/ep/guide";
|
|
|
|
export default {
|
|
path: "/guide",
|
|
redirect: "/guide/index",
|
|
meta: {
|
|
icon: Guide,
|
|
title: $t("menus.hsguide"),
|
|
rank: guide
|
|
},
|
|
children: [
|
|
{
|
|
path: "/guide/index",
|
|
name: "Guide",
|
|
component: () => import("@/views/guide/index.vue"),
|
|
meta: {
|
|
title: $t("menus.hsguide")
|
|
}
|
|
}
|
|
]
|
|
} as RouteConfigsTable;
|