Button 按钮
按钮用于开始一个即时操作。
何时使用
标记了一个(或封装一组)操作命令,响应用户点击行为,触发相应的业务逻辑。
形态
主题色
尺寸
禁用状态
加载中状态
Button 参数
参数名 | 类型 | 默认 | 说明 | 跳转 Demo |
---|---|---|---|---|
variant | IButtonVariant | 'outline' | 可选,按钮形态 | 形态 |
color | IButtonColor | 'secondary' | 可选,按钮主题 | 主题色 |
size | IButtonSize | 'md' | 可选,按钮尺寸 | 尺寸 |
disabled | boolean | false | 可选,是否禁用 button | 禁用状态 |
loading | boolean | false | 可选,设置加载中状态 | 加载中状态 |
类型
IButtonVariant
type IButtonVariant = 'solid' | 'outline' | 'text';
IButtonSize
type IButtonSize = 'lg' | 'md' | 'sm' | 'xs';
IButtonColor
type IButtonColor = 'primary' | 'secondary' | 'danger';