feat(Stepper): add always-embed prop (#4678)

This commit is contained in:
毛呆 2021-12-13 17:35:57 +08:00 committed by GitHub
parent e862032c45
commit 1a01c0eae8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -137,6 +137,7 @@ Page({
| disable-plus | 是否禁用增加按钮 | _boolean_ | - |
| disable-minus | 是否禁用减少按钮 | _boolean_ | - |
| long-press | 是否开启长按手势 | _boolean_ | `true` |
| always-embed `v1.9.3` | 强制 input 处于同层状态,默认 focus 时 input 会切到非同层状态 (仅在 iOS 下生效) | _boolean_ | `false` |
### Events

View File

@ -67,6 +67,7 @@ VantComponent({
value: true,
},
theme: String,
alwaysEmbed: Boolean,
},
data: {

View File

@ -22,6 +22,7 @@
value="{{ currentValue }}"
focus="{{ focus }}"
disabled="{{ disabled || disableInput }}"
always-embed="{{ alwaysEmbed }}"
bindinput="onInput"
bind:focus="onFocus"
bind:blur="onBlur"