bk-magic-vue 2.4.13-beta.2 → 2.4.13-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bk-magic-vue.js
CHANGED
|
@@ -31378,6 +31378,9 @@
|
|
|
31378
31378
|
return !this.isSelectAllItems && !this.isEmpty;
|
|
31379
31379
|
},
|
|
31380
31380
|
isSelectAllItems: function isSelectAllItems() {
|
|
31381
|
+
if (this.options.length < 1) {
|
|
31382
|
+
return false;
|
|
31383
|
+
}
|
|
31381
31384
|
return Array.prototype.every.call(this.options, function (option) {
|
|
31382
31385
|
return option.isSelected;
|
|
31383
31386
|
});
|