bunny-admin-element-thin-i18n/other-views/table/virtual/list.tsx

28 lines
578 B
TypeScript
Raw Normal View History

2024-05-11 14:48:02 +08:00
import List from "./list.vue";
import TreeList from "./treeList.vue";
import PageList from "./pageList.vue";
const rendContent = (val: string) =>
`代码位置src/views/table/virtual/${val}.vue`;
export const list = [
{
key: "list",
content: rendContent("list"),
title: "虚拟表格",
component: List
},
{
key: "treeList",
content: rendContent("treeList"),
title: "虚拟树形表格",
component: TreeList
},
{
key: "pageList",
content: rendContent("pageList"),
title: "分页表格",
component: PageList
}
];