dld-vue-ui 0.3.9 → 0.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/dist/dld-vue-ui.js +343 -339
- package/dist/dld-vue-ui.umd.cjs +1 -1
- package/dist/packages/TableForm/index.vue.d.ts +1 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -101,7 +101,6 @@ interface IPaneStyle {
|
|
|
101
101
|
|`size`|表格的大小|`'large' \| 'default' \| 'small'`|`default`|
|
|
102
102
|
|`tableData`|表格的数据|`Array<ITableData>`|`-`|
|
|
103
103
|
|`tableColumn`|表格的列配置|`Array<ITableColumn>`|`-`|
|
|
104
|
-
|`defaultSelect`|设置默认选中|`Func`|`-`|
|
|
105
104
|
|`stripe`|是否为斑马纹|`boolean`|`true`|
|
|
106
105
|
|`border`|是否带有纵向边框|`boolean`|`false`|
|
|
107
106
|
|`highLight`|是否高亮当前行|`boolean`|`false`|
|
|
@@ -179,6 +178,11 @@ interface IPaneStyle {
|
|
|
179
178
|
|`row-operate-middle`|操作列的自定义内容,位置在修改之后、删除之前,`row`参数携带行数据|
|
|
180
179
|
|`row-operate`|操作列的自定义内容,位置在修改、删除之后,`row`参数携带行数据|
|
|
181
180
|
|
|
181
|
+
### 表格导出方法
|
|
182
|
+
|方法名|参数|返回值|
|
|
183
|
+
|-----|-----|-----|
|
|
184
|
+
|`DefaultSelect`|`(val: ITableData)`|`boolean`|
|
|
185
|
+
|
|
182
186
|
### 可导入的类型
|
|
183
187
|
|
|
184
188
|
```ts
|