@yidun/antd-super-table 0.1.7 → 0.1.8
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 +13 -12
- package/dist/SuperTable.vue.d.ts +9 -0
- package/dist/index.js +1094 -1076
- package/dist/interface.d.ts +5 -0
- package/package.json +1 -1
package/dist/interface.d.ts
CHANGED
|
@@ -435,6 +435,11 @@ export interface SuperTableSlots {
|
|
|
435
435
|
* @public
|
|
436
436
|
*/
|
|
437
437
|
export interface SuperTableExpose extends SuperTableFormOperations, SuperTableTableOperations {
|
|
438
|
+
/**
|
|
439
|
+
* 重置表单查询条件
|
|
440
|
+
*/
|
|
441
|
+
onResetForm(): void
|
|
442
|
+
|
|
438
443
|
/** 是否已初始化 */
|
|
439
444
|
isInitialized: Ref<boolean>
|
|
440
445
|
}
|