feat: 新增 @pureadmin/table 分页和加载动画示例

This commit is contained in:
xiaoxian521
2022-12-04 15:36:39 +08:00
parent 9ab3fd19ef
commit b14f41c8d7
5 changed files with 1936 additions and 4350 deletions

View File

@@ -1,3 +1,4 @@
import Page from "./page/index.vue";
import RowDrag from "./drag/row/index.vue";
import ColumnDrag from "./drag/column/index.vue";
import Contextmenu from "./contextmenu/index.vue";
@@ -11,6 +12,12 @@ const rendContent = (val: string) =>
`代码位置src/views/pure-table/high/${val}/index.vue`;
export const list = [
{
key: "page",
content: rendContent("page"),
title: "分页、加载动画",
component: Page
},
{
key: "rowDrag",
content: rendContent("drag/row"),