可能是由于版本不兼容导致的问题。应在模板中使用正确的过滤器,如下所示:
然后在组件中添加以下代码:
onFilterDeSelectAll(options) {
console.log('onFilterDeSelectAll: ', options);
this.dropdownList.forEach(item => item.isSelected = false);
}
在这个函数中,我们需要把isSelected属性的所有值都设为false。