update ts.d

This commit is contained in:
xuliangzhan
2021-06-03 21:36:14 +08:00
parent cda75d7995
commit 7e52402a9d
8 changed files with 62 additions and 23 deletions

View File

@@ -1172,7 +1172,7 @@
"description": "是否禁用"
},
"vxe-checkbox/model-value": {
"type": "any",
"type": "string | number | boolean",
"description": "v-model 绑定值"
},
"vxe-checkbox/label": {
@@ -1199,6 +1199,14 @@
"type": "boolean",
"description": "是否不确定状态"
},
"vxe-checkbox/checked-value": {
"type": "string | number | boolean",
"description": "选中时的值"
},
"vxe-checkbox/unchecked-value": {
"type": "string | number | boolean",
"description": "未选中时的值"
},
"vxe-checkbox-group/model-value": {
"type": "any[]",
"description": "v-model 绑定值"

View File

@@ -371,7 +371,9 @@
"size",
"disabled",
"title",
"indeterminate"
"indeterminate",
"checked-value",
"unchecked-value"
],
"description": "复选框"
},