mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] Search: add input-align prop (#819)
This commit is contained in:
parent
53e752343a
commit
c4f1427842
@ -58,6 +58,7 @@ Search 支持自定义右侧取消按钮,使用名字为 action 的 slot 即
|
||||
| use-action-slot | 是否使用 action slot | `Boolean` | `false` |
|
||||
| placeholder | 输入框为空时占位符 | `String` | - |
|
||||
| placeholder-style | 指定 placeholder 的样式 | `String` | - |
|
||||
| input-align | 输入框内容对齐方式,可选值为 `center` `right` | `String` | `left` |
|
||||
|
||||
### Event
|
||||
|
||||
|
@ -9,6 +9,7 @@ VantComponent({
|
||||
focus: Boolean,
|
||||
disabled: Boolean,
|
||||
readonly: Boolean,
|
||||
inputAlign: String,
|
||||
showAction: Boolean,
|
||||
useActionSlot: Boolean,
|
||||
placeholder: String,
|
||||
|
@ -14,6 +14,7 @@
|
||||
disabled="{{ disabled }}"
|
||||
readonly="{{ readony }}"
|
||||
maxlength="{{ maxlength }}"
|
||||
input-align="{{ inputAlign }}"
|
||||
placeholder="{{ placeholder }}"
|
||||
placeholder-style="{{ placeholderStyle }}"
|
||||
custom-style="padding: 3px 10px"
|
||||
|
Loading…
x
Reference in New Issue
Block a user