mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(Field): improve formatter prop typing (#8440)
This commit is contained in:
parent
10d2517581
commit
d1196f885d
@ -255,7 +255,7 @@ Use `input-align` prop to align the input value.
|
||||
| show-word-limit | Whether to show word limit, need to set the `maxlength` prop | _boolean_ | `false` |
|
||||
| error | Whether to show error info | _boolean_ | `false` |
|
||||
| error-message | Error message | _string_ | - |
|
||||
| formatter | Input value formatter | _Function_ | - |
|
||||
| formatter | Input value formatter | _(val: string) => string_ | - |
|
||||
| format-trigger | When to format value,can be set to `onBlur` | _string_ | `onChange` |
|
||||
| arrow-direction | Can be set to `left` `up` `down` | _string_ | `right` |
|
||||
| label-class | Label className | _string \| Array \| object_ | - |
|
||||
|
@ -278,7 +278,7 @@ export default {
|
||||
| show-word-limit | 是否显示字数统计,需要设置`maxlength`属性 | _boolean_ | `false` |
|
||||
| error | 是否将输入内容标红 | _boolean_ | `false` |
|
||||
| error-message | 底部错误提示文案,为空时不展示 | _string_ | - |
|
||||
| formatter | 输入内容格式化函数 | _Function_ | - |
|
||||
| formatter | 输入内容格式化函数 | _(val: string) => string_ | - |
|
||||
| format-trigger | 格式化函数触发的时机,可选值为 `onBlur` | _string_ | `onChange` |
|
||||
| arrow-direction | 箭头方向,可选值为 `left` `up` `down` | _string_ | `right` |
|
||||
| label-class | 左侧文本额外类名 | _string \| Array \| object_ | - |
|
||||
|
Loading…
x
Reference in New Issue
Block a user