[improvement] Button: add id prop (#650)

This commit is contained in:
neverland 2018-09-27 10:53:42 +08:00 committed by GitHub
parent 0c4e200d40
commit 8b65086bd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -57,6 +57,7 @@
| 参数 | 说明 | 类型 | 默认值 |
|-----------|-----------|-----------|-------------|
| id | 标识符 | `String` | - |
| type | 按钮类型,可选值为 `primary` `warning` `danger` | `String` | `default` |
| size | 按钮尺寸,可选值为 `normal` `large` `small` `mini` | `String` | `normal` |
| plain | 是否为朴素按钮 | `Boolean` | `false` |

View File

@ -1,5 +1,6 @@
<button
class="custom-class van-button {{ classes }}"
id="{{ id }}"
disabled="{{ disabled }}"
hover-class="button-hover"
open-type="{{ openType }}"

View File

@ -1,5 +1,6 @@
export const button = Behavior({
properties: {
id: String,
loading: Boolean,
openType: String,
appParameter: String,