From a8fff321c06a8929e9c52c6161019b166ca2298e Mon Sep 17 00:00:00 2001 From: tony Date: Fri, 4 Mar 2022 11:01:13 +0800 Subject: [PATCH] =?UTF-8?q?FIX:=20tree=20showcheckbox=20=E4=B9=9F=E4=BC=9A?= =?UTF-8?q?=E8=A2=AB=E5=8B=BE=E9=80=89=E7=9A=84BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/checkbox/checkbox.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/checkbox/checkbox.vue b/src/components/checkbox/checkbox.vue index 23e49418f..0e50092f5 100644 --- a/src/components/checkbox/checkbox.vue +++ b/src/components/checkbox/checkbox.vue @@ -167,6 +167,7 @@ }, watch: { value (val) { + if(this.disabled || this.itemDisabled) return; if (val === this.trueValue || val === this.falseValue) { this.updateModel(); } else {