You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/checkbox/demo/group.vue

64 lines
1.3 KiB

<docs>
---
order: 4
title:
zh-CN: Checkbox
en-US: Checkbox group
---
## zh-CN
方便的从数组生成 checkbox
## en-US
Generate a group of checkboxes from an array
</docs>
<template>
<a-checkbox-group v-model:value="value1" name="checkboxgroup" :options="plainOptions" />
<br />
<a-checkbox-group v-model:value="value2" :options="plainOptions" />
<br />
<a-checkbox-group v-model:value="value3" :options="options" />
<br />
<a-checkbox-group v-model:value="value4" :options="optionsWithDisabled" disabled>
<template #label="{ value }">
<span style="color: red">{{ value }}</span>
</template>
</a-checkbox-group>
</template>
<script lang="ts">
import { defineComponent, reactive, toRefs } from 'vue';
const plainOptions = ['Apple', 'Pear', 'Orange'];
const options = [
{ label: 'Apple', value: 'Apple' },
{ label: 'Pear', value: 'Pear' },
{ label: 'Orange', value: 'Orange' },
];
const optionsWithDisabled = [
{ value: 'Apple' },
{ label: 'Pear', value: 'Pear' },
{ label: 'Orange', value: 'Orange', disabled: false },
];
export default defineComponent({
setup() {
const state = reactive({
value1: [],
value2: ['Apple'],
value3: ['Pear'],
value4: ['Apple'],
});
return {
plainOptions,
options,
optionsWithDisabled,
...toRefs(state),
};
},
});
</script>