wip: Table component developing

This commit is contained in:
kailong321200875
2022-02-07 17:32:37 +08:00
parent 9b4b317817
commit 7b7fcfef59
16 changed files with 1358 additions and 1136 deletions

10
types/componentType/table.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
declare type TableColumn = {
field: string
label?: string
} & Recordable
declare type TableColumnDefault = {
row: Recordable
field: string
index: number
}