fix: checkboxGroup组件设置min>=2 时无法选中

pull/22226/head
wenquansun 2022-11-01 16:07:32 +08:00
parent 5d7374bf16
commit d1d160fb15
1 changed files with 0 additions and 3 deletions

View File

@ -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 &&