Skip to content
On this page

Button

TIP

点击之后延时 800ms, 防止重复点击

基础使用

vue
<template>
  <k-button>button</k-button>
  <k-button type="primary">
    primary
  </k-button>
  <k-button type="success">
    success
  </k-button>
  <k-button type="danger">
    danger
  </k-button>
  <k-button type="warning">
    warning
  </k-button>
  <k-button type="info">
    info
  </k-button>
</template>

调整尺寸

可设置size类型,控制按钮大小。可选值:large, default, small

vue
<template>
  <div>
    <k-button size="large">
      primary
    </k-button>
    <k-button>default</k-button>
    <k-button size="small">
      info
    </k-button>
  </div>
  <div class="mt10">
    <k-button type="primary" size="large">
      primary
    </k-button>
    <k-button type="primary">
      default
    </k-button>
    <k-button type="primary" size="small">
      info
    </k-button>
  </div>
</template>

<script setup></script>

<style lang="scss" scoped></style>

Button 属性

TIP

其他属性查看 elementPlus 按钮属性

Button 事件