2024-08-28 10:36:16 +08:00
|
|
|
import { $t } from "@/plugins/i18n";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
path: "/error",
|
|
|
|
redirect: "/error/403",
|
|
|
|
meta: {
|
|
|
|
icon: "ri:information-line",
|
2024-09-03 08:47:49 +08:00
|
|
|
showLink: false,
|
|
|
|
title: "menus.pureAbnormal",
|
2024-08-28 10:36:16 +08:00
|
|
|
rank: 9
|
|
|
|
},
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: "/error/403",
|
|
|
|
name: "403",
|
|
|
|
component: () => import("@/views/error/403.vue"),
|
|
|
|
meta: {
|
|
|
|
title: $t("menus.pureFourZeroOne")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "/error/404",
|
|
|
|
name: "404",
|
|
|
|
component: () => import("@/views/error/404.vue"),
|
|
|
|
meta: {
|
|
|
|
title: $t("menus.pureFourZeroFour")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: "/error/500",
|
|
|
|
name: "500",
|
|
|
|
component: () => import("@/views/error/500.vue"),
|
|
|
|
meta: {
|
|
|
|
title: $t("menus.pureFive")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
} satisfies RouteConfigsTable;
|