elementUI 的 el-checkbox-group组件设置了max全选之后就无法手动取消单个选中的数据,必须点取消全选按钮才可以全部取消选中,巨
<template>
<el-checkbox v-model="checkAll" @change="handleCheckAllChange">全选/取消全选</el-checkbox>
<div style="margin: 15px 0;"></div>
<el-checkbox-group v-model="checkedCities" :max="5">
<el-checkbox v-for="city in cities" :label="city" :key="city">{{city}}</el-checkbox>
</el-checkbox-group>
</template>
<script>
const cityOptions = ['上海', '北京', '广州', '深圳'];
export default {
data() {
return {
checkAll: false,
checkedCities: ['上海', '北京'],
cities: cityOptions,
isIndeterminate: true
};
},
methods: {
handleCheckAllChange(val) {
this.checkedCities = val ? cityOptions : [];
},
}
};
</script>