ant-design-vue/components/space/demo/compact-button-vertical.vue

38 lines
902 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: 8
title:
zh-CN: 垂直方向紧凑布局
en-US: Vertical Compact Mode
---
## zh-CN
垂直方向的紧凑布局目前仅支持 Button 组合
## en-US
Vertical Mode for Space.Compact, support Button only.
</docs>
<template>
<a-space>
<a-space-compact direction="vertical">
<a-button>Button 1</a-button>
<a-button>Button 2</a-button>
<a-button>Button 3</a-button>
</a-space-compact>
<a-space-compact direction="vertical">
<a-button type="dashed">Button 1</a-button>
<a-button type="dashed">Button 2</a-button>
<a-button type="dashed">Button 3</a-button>
</a-space-compact>
<a-space-compact direction="vertical">
<a-button type="primary">Button 1</a-button>
<a-button type="primary">Button 2</a-button>
<a-button type="primary">Button 3</a-button>
</a-space-compact>
</a-space>
</template>