diff --git a/packages/checkbox/src/checkbox.vue b/packages/checkbox/src/checkbox.vue index 0767e746d..736c5b72c 100644 --- a/packages/checkbox/src/checkbox.vue +++ b/packages/checkbox/src/checkbox.vue @@ -6,7 +6,6 @@ }"> - + @@ -61,6 +61,15 @@ export default { ? this.parentGroup.disabled || this.disabled : this.disabled; } + }, + + methods: { + handleLabelClick() { + if (this.isDisabled) { + return; + } + this.currentValue = this.name; + } } };