mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-06 00:18:51 +08:00
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import { $t } from "@/plugins/i18n";
|
|
import { table } from "@/router/enums";
|
|
|
|
export default {
|
|
path: "/table",
|
|
redirect: "/table/index",
|
|
meta: {
|
|
icon: "ri:table-line",
|
|
title: $t("menus.hstable"),
|
|
rank: table
|
|
},
|
|
children: [
|
|
{
|
|
path: "/table/index",
|
|
name: "PureTable",
|
|
component: () => import("@/views/table/index.vue"),
|
|
meta: {
|
|
title: $t("menus.hsPureTableBase")
|
|
}
|
|
},
|
|
{
|
|
path: "/table/high",
|
|
name: "PureTableHigh",
|
|
component: () => import("@/views/table/high.vue"),
|
|
meta: {
|
|
title: $t("menus.hsPureTableHigh")
|
|
}
|
|
},
|
|
{
|
|
path: "/table/edit",
|
|
name: "PureTableEdit",
|
|
component: () => import("@/views/table/edit.vue"),
|
|
meta: {
|
|
title: $t("menus.hsPureTableEdit"),
|
|
extraIcon: "IF-pure-iconfont-new svg"
|
|
}
|
|
},
|
|
{
|
|
path: "/table/virtual",
|
|
name: "VxeTable",
|
|
component: () => import("@/views/table/virtual.vue"),
|
|
meta: {
|
|
title: $t("menus.hsVxeTable"),
|
|
extraIcon: "IF-pure-iconfont-new svg"
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|