how to select all of element checkbox
how to select all of element checkbox
are you asking about the underlying principle or code implementation? The principle of
is bi-directional binding, and the code implementation officially has example .
<template>
<el-checkbox :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange"></el-checkbox>
<div style="margin: 15px 0;"></div>
<el-checkbox-group v-model="checkedCities" @change="handleCheckedCitiesChange">
<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 : [];
this.isIndeterminate = false;
},
handleCheckedCitiesChange(value) {
let checkedCount = value.length;
this.checkAll = checkedCount === this.cities.length;
this.isIndeterminate = checkedCount > 0 && checkedCount < this.cities.length;
}
}
};
</script>
or with or without api is as effective as a user clicking on a node manually ...
A panel with a scroll bar and an element-ui table inside. Due to the need, you need to control the page to scroll to the location of the specified row. But I can t do that now. The initial consideration is to get the row, specified in table, find its of...