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

28 lines
578 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
}
];