diff --git a/packages/vant/src/field/README.md b/packages/vant/src/field/README.md index 47507b287..bcd9955f5 100644 --- a/packages/vant/src/field/README.md +++ b/packages/vant/src/field/README.md @@ -317,7 +317,7 @@ Use `label-align` prop to align the input value, can be set to `center`, `right` | name | As the identifier when submitting the form | _string_ | - | | id | Input id, the for attribute of the label also will be set | _string_ | `van-field-n-input` | | type | Input type, support all [native types](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types) and `digit` type | _FieldType_ | `text` | -| size | Size, can be set to `large` | _string_ | - | +| size | Size, can be set to `large` `normal` | _string_ | - | | maxlength | Max length of value | _number \| string_ | - | | placeholder | Input placeholder | _string_ | - | | border | Whether to show inner border | _boolean_ | `true` | diff --git a/packages/vant/src/field/README.zh-CN.md b/packages/vant/src/field/README.zh-CN.md index 2c2d0a37e..0e651e37f 100644 --- a/packages/vant/src/field/README.zh-CN.md +++ b/packages/vant/src/field/README.zh-CN.md @@ -346,7 +346,7 @@ export default { | name | 名称,作为提交表单时的标识符 | _string_ | - | | id | 输入框 id,同时会设置 label 的 for 属性 | _string_ | `van-field-n-input` | | type | 输入框类型, 支持原生 input 标签的所有 [type 属性](https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/input#%3Cinput%3E_types),额外支持了 `digit` 类型 | _FieldType_ | `text` | -| size | 大小,可选值为 `large` | _string_ | - | +| size | 大小,可选值为 `large` `normal` | _string_ | - | | maxlength | 输入的最大字符数 | _number \| string_ | - | | placeholder | 输入框占位提示文字 | _string_ | - | | border | 是否显示内边框 | _boolean_ | `true` |