[improvement] Search: add input-align prop (#819)

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

View File

@ -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

View File

@ -9,6 +9,7 @@ VantComponent({
focus: Boolean,
disabled: Boolean,
readonly: Boolean,
inputAlign: String,
showAction: Boolean,
useActionSlot: Boolean,
placeholder: String,

View File

@ -14,6 +14,7 @@
disabled="{{ disabled }}"
readonly="{{ readony }}"
maxlength="{{ maxlength }}"
input-align="{{ inputAlign }}"
placeholder="{{ placeholder }}"
placeholder-style="{{ placeholderStyle }}"
custom-style="padding: 3px 10px"