Skip to content

Button

Buttons are used to trigger an action, such as submitting a form or opening a link.

Basic Usage

Basic button.

html
<wd-button>Primary Button</wd-button>
<wd-button type="success">Success Button</wd-button>
<wd-button type="info">Info Button</wd-button>
<wd-button type="warning">Warning Button</wd-button>
<wd-button type="error">Danger Button</wd-button>

Disabled

Set the disabled attribute.

html
<wd-button disabled>Default Button</wd-button>

Plain Button

Set the plain attribute.

html
<wd-button plain>Primary Button</wd-button>

Hairline Plain Button

Set the hairline attribute.

html
<wd-button plain hairline>Primary Button</wd-button>

Button Size

Set the size attribute, supports 'small', 'medium', 'large', default is 'medium'.

html
<wd-button size="small">Small Button</wd-button>
<wd-button size="medium">Medium Button</wd-button>
<wd-button size="large">Large Button</wd-button>

Loading Button

Set the loading attribute to make the button in loading state. A loading button is disabled from being clicked.

html
<wd-button loading>Loading</wd-button>

Text Button

Set type to text. Text buttons do not support other colors.

html
<wd-button type="text">Text Button</wd-button>

Icon Button

Set type to icon and set the icon attribute. The icon is the class name of the icon, which can directly use the icon class names from the Icon section.

html
<wd-button type="icon" icon="picture"></wd-button>

Button with Icon

Set the icon attribute without setting type to icon to use a button with an icon.

html
<wd-button icon="edit-outline"></wd-button>

Combine with classPrefix to use custom icons, see Icon Custom Icons.

html
<wd-button classPrefix="fish" icon="kehuishouwu">Recyclable</wd-button>

Block Button

Set the block attribute.

html
<wd-button block>Primary Button</wd-button>

Custom Style

Use the custom-class and custom-style attributes to customize the button's style. Here we use custom-class to add a Material Design 3 style box-shadow to the button.

html
<view class="page-class">
  <wd-button custom-class="custom-shadow">Primary Button</wd-button>
  <wd-button type="success" custom-class="custom-shadow">Success Button</wd-button>
  <wd-button type="info" custom-class="custom-shadow">Info Button</wd-button>
  <wd-button type="warning" custom-class="custom-shadow">Warning Button</wd-button>
  <wd-button type="error" custom-class="custom-shadow">Danger Button</wd-button>
</view>
scss
.page-class {
  :deep() {
    .custom-shadow {
      box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    }
  }
}

Attributes

ParameterDescriptionTypeAccepted ValuesDefaultMin Version
typeButton typestringprimary / success / info / warning / error / text / iconprimary-
roundRound buttonboolean-true-
plainPlain buttonboolean-false-
hairlineWhether to use hairline borderboolean-false-
loadingLoading buttonboolean-false-
blockBlock buttonboolean-false-
sizeButton sizestringsmall / medium / largemedium-
disabledDisabled buttonboolean-false-
iconIcon class namestring---
loading-colorLoading icon colorstring---
open-typeWeChat open capabilitystring---
hover-stop-propagationSpecifies whether to prevent the ancestor node of this node from appearing in the clicked stateboolean-false-
langSpecifies the language of the returned user information, zh_CN for Simplified Chinese, zh_TW for Traditional Chinese, en for Englishstringzh_CN / zh_TWen-
session-fromSession source, valid when open-type="contact"string---
session-message-titleSession message card title, valid when open-type="contact"string-Current title-
session-message-pathSession message card click jump Mini Program path, valid when open-type="contact"string-Current share path-
send-message-imgSession message card image, valid when open-type="contact"string-Screenshot-
app-parameterParameters passed to the APP when opening the APP, valid when open-type=launchAppstring---
show-message-cardWhether to display the message card in the session, setting this parameter to true will show a prompt "May want to send Mini Program" in the bottom right corner when the user enters the customer service session, and the user can quickly send the Mini Program message after clicking, valid when open-type="contact"boolean-false-
classPrefixClass name prefix, used for custom icons, see iconstring-'wd-icon'0.1.27
button-idUnique identifier of the button, can be used to set the id of the privacy consent authorization buttonstring--1.3.6
scopeUsed by Alipay Mini Program, valid when open-type is getAuthorize.ButtonScopephoneNumber / userInfo-1.3.14

ButtonOpenType Open Capabilities

WeChat Mini Program open capabilities, see WeChat Mini Program Button.

ValueDescription
feedbackOpen the "Feedback" page, where users can submit feedback content and upload logs.
shareTrigger user forwarding
getUserInfoGet user information, which can be obtained from the @getuserinfo callback
contactOpen customer service session, if the user returns to the application after clicking the message card in the session, specific information can be obtained from the @contact callback
getPhoneNumberGet the user's phone number, which can be obtained from the @getphonenumber callback
launchAppOpen APP in Mini Program, parameters can be passed to the APP through the app-parameter attribute
openSettingOpen authorization settings page
chooseAvatarGet user avatar, avatar information can be obtained from the @chooseavatar callback
getAuthorizeSupport Mini Program authorization, used with scope in Alipay Mini Program, can implement getPhoneNumber and getUserInfo functions.
lifestyleFollow the lifestyle account, Alipay Mini Program
contactShareShare to contacts, Alipay Mini Program
agreePrivacyAuthorizationUser agrees to privacy agreement button. User agreement to privacy agreement events can be monitored through @agreeprivacyauthorization.

Events

Event NameDescriptionParametersMin Version
clickClick eventevent-
getuserinfoGet user informationdetail-
contactCustomer service message callback, valid when open-type="contact"detail-
getphonenumberGet user phone number callback, valid when open-type=getPhoneNumberdetail-
errorError callback when using open capabilities, valid when open-type=launchAppdetail-
launchappCallback for successfully opening APP, valid when open-type=launchAppdetail-
opensettingCallback after opening authorization settings page, valid when open-type=openSettingdetail-

External Style Classes

Class NameDescriptionMin Version
custom-classRoot node style-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.