Skip to content
On this page

Button 按钮

常用的操作按钮。

基础用法

查看代码
vue
<template>
  <div>
    <yum-button>默认按钮</yum-button>
    <yum-button type="primary">主要按钮</yum-button>
    <yum-button type="success">成功按钮</yum-button>
    <yum-button type="info">信息按钮</yum-button>
    <yum-button type="warning">警告按钮</yum-button>
    <yum-button type="danger">危险按钮</yum-button>
  </div>
</template>

Released under the MIT License.