mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-11-12 21:53:39 +08:00
39 lines
791 B
TypeScript
39 lines
791 B
TypeScript
import { $t } from "@/plugins/i18n";
|
|
|
|
export default {
|
|
path: "/error",
|
|
redirect: "/error/403",
|
|
meta: {
|
|
icon: "ri:information-line",
|
|
// showLink: false,
|
|
title: $t("menus.hsabnormal"),
|
|
rank: 9
|
|
},
|
|
children: [
|
|
{
|
|
path: "/error/403",
|
|
name: "403",
|
|
component: () => import("@/views/error/403.vue"),
|
|
meta: {
|
|
title: $t("menus.hsfourZeroOne")
|
|
}
|
|
},
|
|
{
|
|
path: "/error/404",
|
|
name: "404",
|
|
component: () => import("@/views/error/404.vue"),
|
|
meta: {
|
|
title: $t("menus.hsfourZeroFour")
|
|
}
|
|
},
|
|
{
|
|
path: "/error/500",
|
|
name: "500",
|
|
component: () => import("@/views/error/500.vue"),
|
|
meta: {
|
|
title: $t("menus.hsFive")
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|