fix 修复自定义列、标题提示鼠标移上去相关报错问题 #2360 #2361

This commit is contained in:
xuliangzhan
2024-04-23 13:16:18 +08:00
parent f76e663d81
commit 3ed5b412f4
11 changed files with 204 additions and 79 deletions

View File

@@ -1025,7 +1025,7 @@
},
"vxe-radio-group/type": {
"type": "string",
"description": "选项类型"
"description": "按钮类型"
},
"vxe-radio-group/size": {
"type": "string",
@@ -1039,6 +1039,14 @@
"type": "boolean",
"description": "严格模式,选中后不能取消"
},
"vxe-radio-group/options": {
"type": "{ value, label }[]",
"description": "选项列表"
},
"vxe-radio-group/option-props": {
"type": "any",
"description": "选项属性参数配置"
},
"vxe-radio-button/model-value": {
"type": "any",
"description": "v-model 绑定值"
@@ -1111,6 +1119,14 @@
"type": "boolean",
"description": "是否禁用"
},
"vxe-checkbox-group/options": {
"type": "{ value, label }[]",
"description": "选项列表"
},
"vxe-checkbox-group/option-props": {
"type": "any",
"description": "选项属性参数配置"
},
"vxe-switch/model-value": {
"type": "string | number | boolean",
"description": "v-model 绑定值"
@@ -1423,6 +1439,10 @@
"type": "string",
"description": "模式"
},
"vxe-button/title": {
"type": "string",
"description": "标题"
},
"vxe-button/type": {
"type": "string",
"description": "类型"
@@ -1503,6 +1523,10 @@
"type": "string | (({}) => string)",
"description": "给展示容器附加 className"
},
"vxe-button-group/options": {
"type": "array",
"description": "按钮列表"
},
"vxe-tooltip/model-value": {
"type": "boolean",
"description": "是否显示"

View File

@@ -306,8 +306,11 @@
"model-value",
"type",
"size",
"type",
"disabled",
"strict"
"strict",
"options",
"option-props"
],
"subtags": [
"vxe-radio",
@@ -344,7 +347,9 @@
"model-value",
"max",
"size",
"disabled"
"disabled",
"options",
"option-props"
],
"subtags": [
"vxe-checkbox"
@@ -463,6 +468,7 @@
"attributes": [
"content",
"mode",
"title",
"type",
"size",
"name",
@@ -487,7 +493,8 @@
"round",
"circle",
"disabled",
"class-name"
"class-name",
"options"
],
"description": "按钮组"
},