feat: pure-admin-table高级用法添加自适应内容区高度demo

This commit is contained in:
xiaoxian521
2023-06-09 16:51:09 +08:00
parent 39833ce917
commit f971cd5b30
8 changed files with 180 additions and 7 deletions

View File

@@ -1,3 +1,4 @@
import Adaptive from "./adaptive/index.vue";
import Page from "./page/index.vue";
import RowDrag from "./drag/row/index.vue";
import ColumnDrag from "./drag/column/index.vue";
@@ -13,6 +14,12 @@ const rendContent = (val: string) =>
`代码位置src/views/pure-table/high/${val}/index.vue`;
export const list = [
{
key: "adaptive",
content: rendContent("adaptive"),
title: "自适应内容区高度",
component: Adaptive
},
{
key: "page",
content: rendContent("page"),