feat: 添加 @pureadmin/table 表格选择器(单选、多选)示例

This commit is contained in:
xiaoxian521
2022-12-05 01:57:30 +08:00
parent f13faf0788
commit 95940312a9
8 changed files with 275 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ import Edit from "./edit/index.vue";
import Watermark from "./watermark/index.vue";
import Print from "./prints/index.vue";
import Echarts from "./echarts/index.vue";
import TableSelect from "./table-select/index.vue";
const rendContent = (val: string) =>
`代码位置src/views/pure-table/high/${val}/index.vue`;
@@ -18,6 +19,12 @@ export const list = [
title: "分页、加载动画",
component: Page
},
{
key: "tableSelect",
content: rendContent("table-select"),
title: "表格选择器",
component: TableSelect
},
{
key: "rowDrag",
content: rendContent("drag/row"),