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/space/demo/wrap.vue

26 lines
288 B

<docs>
---
order: 0
title:
zh-CN: 自动换行
en-US: Basic Usage
---
## zh-CN
自动换行
## en-US
Wrap
</docs>
<template>
<a-space :size="[8, 16]" wrap>
<template v-for="_i in 20" :key="_i">
<a-button>Button</a-button>
</template>
</a-space>
</template>