feat(button): add new prop dataset (#3075)

fix #2483
This commit is contained in:
rex 2020-05-01 14:55:26 +08:00 committed by GitHub
commit 7cce96a68d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -140,6 +140,7 @@
| send-message-path | 会话内消息卡片点击跳转小程序路径 | _string_ | 当前分享路径 | - |
| send-message-img | sendMessageImg | _string_ | 截图 | - |
| show-message-card | 显示会话内消息卡片 | _string_ | `false` | - |
| dataset | 按钮 datasetopen-type 为 `share` 时,可在 onShareAppMessage 事件的 `event.target.dataset.detail` 中看到传入的值 | _any_ | - | - |
### Events

View File

@ -30,6 +30,7 @@ VantComponent({
type: String,
value: 'default',
},
dataset: null,
size: {
type: String,
value: 'normal',

View File

@ -2,6 +2,7 @@
<button
id="{{ id }}"
data-detail="{{ dataset }}"
class="custom-class {{ utils.bem('button', [type, size, { block, round, plain, square, loading, disabled, hairline, unclickable: disabled || loading }]) }} {{ hairline ? 'van-hairline--surround' : '' }}"
hover-class="van-button--active hover-class"
lang="{{ lang }}"