TButtonGroup / 按钮组
ButtonGroup groups buttons together in a horizontal or vertical set. Buttons in a group connect visually with shared borders. / 按钮组将多个按钮组合为水平或垂直集合,按钮之间共享边框形成视觉连接。
Props / 属性
| Prop | Type / 类型 | Default / 默认值 | Description / 说明 |
|---|---|---|---|
vertical | boolean | false | Vertical layout |
Basic Usage / 基础用法
vue
<template>
<TButtonGroup>
<TButton color="primary">Left</TButton>
<TButton color="primary">Center</TButton>
<TButton color="primary">Right</TButton>
</TButtonGroup>
</template>