17 lines
384 B
Vue
17 lines
384 B
Vue
<script setup lang="ts">
|
|
import { Space } from 'ant-design-vue';
|
|
/**
|
|
* 垂直按钮组
|
|
* Ant Design Vue 的按钮组只支持水平显示,通过重写样式实现垂直布局
|
|
*/
|
|
defineOptions({ name: 'VerticalButtonGroup' });
|
|
</script>
|
|
|
|
<template>
|
|
<Space v-bind="$attrs">
|
|
<Space.Compact direction="vertical">
|
|
<slot></slot>
|
|
</Space.Compact>
|
|
</Space>
|
|
</template>
|