TButtonList / 按钮列表
ButtonList arranges buttons in a horizontal flex layout with consistent spacing. Supports justify alignment options. / 按钮列表将按钮水平排列,统一间距,支持多种对齐方式。
Props / 属性
| Prop | Type / 类型 | Default / 默认值 | Description / 说明 |
|---|---|---|---|
justify | 'start' | 'center' | 'end' | 'around' | 'between' | 'evenly' | 'start' | Flex justify alignment |
Basic Usage / 基础用法
vue
<template>
<TButtonList>
<TButton color="primary">Save / 保存</TButton>
<TButton color="secondary">Cancel / 取消</TButton>
</TButtonList>
</template>