Skip to content
On this page

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尺寸Stringmedium / small / mini-
type类型Stringprimary / secondary / text-
disabled是否禁用状态boolean-false
block是否独占一行boolean-false