Appearance
Button 按钮 #
使用
type
属性来定义 Button 的样式。<template>
<ly-button type="primary">primary</ly-button>
<ly-button type="secondary">secondary</ly-button>
<ly-button type="text">text</ly-button>
</template>
显示代码
复制代码片段
使用
disabled
属性来禁用 Button。<template>
<ly-button disabled >large</ly-button>
<ly-button type="primary" disabled>large</ly-button>
<ly-button size="small" disabled>large</ly-button>
</template>
显示代码
复制代码片段
使用
size
属性来定义 Button 的大小。<template>
<ly-button size="large">large</ly-button>
<ly-button size="medium">medium</ly-button>
<ly-button size="small">small</ly-button>
</template>
显示代码
复制代码片段
使用
block
属性来定义 Button 的样式。<template>
<ly-button size="large" block >large</ly-button>
<ly-button type="primary" block >large</ly-button>
</template>
显示代码
复制代码片段
Attributes #
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
size | 尺寸 | String | medium / small / mini | - |
type | 类型 | String | primary / secondary / text | - |
disabled | 是否禁用状态 | boolean | - | false |
block | 是否独占一行 | boolean | - | false |