ant-design-vue/components/checkbox/demo/layout.vue

50 lines
969 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<docs>
---
order: 5
title:
zh-CN: 布局
en-US: Use with grid
---
## zh-CN
Checkbox.Group 内嵌 Checkbox 并与 Grid 组件一起使用可以实现灵活的布局
## en-US
We can use Checkbox and Grid Checkbox.group, to implement complex layout
</docs>
<template>
<a-checkbox-group v-model:value="value">
<a-row>
<a-col :span="8">
<a-checkbox value="A">A</a-checkbox>
</a-col>
<a-col :span="8">
<a-checkbox value="B">B</a-checkbox>
</a-col>
<a-col :span="8">
<a-checkbox value="C">C</a-checkbox>
</a-col>
<a-col :span="8">
<a-checkbox value="D">D</a-checkbox>
</a-col>
<a-col :span="8">
<a-checkbox value="E">E</a-checkbox>
</a-col>
</a-row>
</a-checkbox-group>
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
return {
value: ref([]),
};
},
});
</script>