admin-vben/apps/web-antdv-next/src/views/mall/promotion/components/vertical-button-group/index.vue

18 lines
351 B
Vue

<script setup lang="ts">
import { Space } from 'antdv-next';
/**
* 垂直按钮组
* Ant Design Vue 的按钮组,通过 Space 实现垂直布局
*/
defineOptions({ name: 'VerticalSpace' });
</script>
<template>
<Space v-bind="$attrs">
<Space.Compact orientation="vertical">
<slot></slot>
</Space.Compact>
</Space>
</template>