mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-01 03:28:42 +08:00
26496ba0a9
* style: remove not use pkg * refactor: vc-checkbox * refactor: checkbox * fix: radio type
65 lines
1.3 KiB
Vue
65 lines
1.3 KiB
Vue
<docs>
|
||
---
|
||
order: 1
|
||
title:
|
||
zh-CN: 全选
|
||
en-US: Check all
|
||
---
|
||
|
||
## zh-CN
|
||
|
||
在实现全选效果时,你可能会用到 `indeterminate` 属性
|
||
|
||
## en-US
|
||
|
||
The `indeterminate` property can help you to achieve a 'check all' effect.
|
||
|
||
</docs>
|
||
|
||
<template>
|
||
<div>
|
||
<a-checkbox
|
||
v-model:checked="checkAll"
|
||
:indeterminate="indeterminate"
|
||
@change="onCheckAllChange"
|
||
>
|
||
Check all
|
||
</a-checkbox>
|
||
</div>
|
||
<a-divider />
|
||
<a-checkbox-group v-model:value="checkedList" :options="plainOptions" />
|
||
</template>
|
||
<script lang="ts">
|
||
import { defineComponent, reactive, toRefs, watch } from 'vue';
|
||
const plainOptions = ['Apple', 'Pear', 'Orange'];
|
||
export default defineComponent({
|
||
setup() {
|
||
const state = reactive({
|
||
indeterminate: true,
|
||
checkAll: false,
|
||
checkedList: ['Apple', 'Orange'],
|
||
});
|
||
|
||
const onCheckAllChange = (e: any) => {
|
||
Object.assign(state, {
|
||
checkedList: e.target.checked ? plainOptions : [],
|
||
indeterminate: false,
|
||
});
|
||
};
|
||
watch(
|
||
() => state.checkedList,
|
||
val => {
|
||
state.indeterminate = !!val.length && val.length < plainOptions.length;
|
||
state.checkAll = val.length === plainOptions.length;
|
||
},
|
||
);
|
||
|
||
return {
|
||
...toRefs(state),
|
||
plainOptions,
|
||
onCheckAllChange,
|
||
};
|
||
},
|
||
});
|
||
</script>
|