# Button按钮
# 基本用法
# 预设状态
# 点击延时响应
# 参数列表
参数 | 方式 | 示例 | 解释 |
---|---|---|---|
html-type | Prop | html-type="submit" | 设置 button 原生的 type 值,可选值为 button reset 或者submit |
size | Prop | size="large" | 预设按钮大小,可选值为 small large 或者不设,优先级低于自定义宽高 |
type | Prop | type="primary" | 预设的按钮类型,可选值为 primary dashed danger link 或者不设,优先级低于 active 属性 |
shape | Prop | shape="circle" | 设置按钮形状,可选值为 circle round 或者不设 |
timeout | Prop | timeout="1000" | 点击事件触发延时 |
click | Emit | @click="onClick" | 按钮点击回调事件 |