From d1d160fb1598213b6ea4e96b2172e94c5ff01d67 Mon Sep 17 00:00:00 2001 From: wenquansun <604164227@qq.com> Date: Tue, 1 Nov 2022 16:07:32 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20checkboxGroup=E7=BB=84=E4=BB=B6=E8=AE=BE?= =?UTF-8?q?=E7=BD=AEmin>=3D2=20=E6=97=B6=E6=97=A0=E6=B3=95=E9=80=89?= =?UTF-8?q?=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/checkbox/src/checkbox.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/checkbox/src/checkbox.vue b/packages/checkbox/src/checkbox.vue index 00df69e99..c84268501 100644 --- a/packages/checkbox/src/checkbox.vue +++ b/packages/checkbox/src/checkbox.vue @@ -91,9 +91,6 @@ set(val) { if (this.isGroup) { this.isLimitExceeded = false; - (this._checkboxGroup.min !== undefined && - val.length < this._checkboxGroup.min && - (this.isLimitExceeded = true)); (this._checkboxGroup.max !== undefined && val.length > this._checkboxGroup.max &&