mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(Stepper): add always-embed prop (#4678)
This commit is contained in:
parent
e862032c45
commit
1a01c0eae8
@ -137,6 +137,7 @@ Page({
|
|||||||
| disable-plus | 是否禁用增加按钮 | _boolean_ | - |
|
| disable-plus | 是否禁用增加按钮 | _boolean_ | - |
|
||||||
| disable-minus | 是否禁用减少按钮 | _boolean_ | - |
|
| disable-minus | 是否禁用减少按钮 | _boolean_ | - |
|
||||||
| long-press | 是否开启长按手势 | _boolean_ | `true` |
|
| long-press | 是否开启长按手势 | _boolean_ | `true` |
|
||||||
|
| always-embed `v1.9.3` | 强制 input 处于同层状态,默认 focus 时 input 会切到非同层状态 (仅在 iOS 下生效) | _boolean_ | `false` |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
|
@ -67,6 +67,7 @@ VantComponent({
|
|||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
theme: String,
|
theme: String,
|
||||||
|
alwaysEmbed: Boolean,
|
||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
data: {
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
value="{{ currentValue }}"
|
value="{{ currentValue }}"
|
||||||
focus="{{ focus }}"
|
focus="{{ focus }}"
|
||||||
disabled="{{ disabled || disableInput }}"
|
disabled="{{ disabled || disableInput }}"
|
||||||
|
always-embed="{{ alwaysEmbed }}"
|
||||||
bindinput="onInput"
|
bindinput="onInput"
|
||||||
bind:focus="onFocus"
|
bind:focus="onFocus"
|
||||||
bind:blur="onBlur"
|
bind:blur="onBlur"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user