feat(Field): add autocomplate prop #7877

This commit is contained in:
chenjiahan 2021-01-10 13:28:38 +08:00
parent 1eb9a80436
commit 4c4d303363
4 changed files with 15 additions and 0 deletions

View File

@ -265,6 +265,7 @@ Use `input-align` prop to align the input value.
| right-icon | Right side icon name | _string_ | - |
| icon-prefix `v2.5.3` | Icon className prefix | _string_ | `van-icon` |
| rules `v2.5.0` | Form validation rules | _Rule[]_ | - |
| autocomplete `v3.0.3` | [autocomplete](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) attribute of native input element | _string_ | - |
### Events

View File

@ -288,6 +288,7 @@ export default {
| right-icon | 右侧[图标名称](#/zh-CN/icon)或图片链接 | _string_ | - |
| icon-prefix `v2.5.3` | 图标类名前缀,同 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | _string_ | `van-icon` |
| rules `v2.5.0` | 表单校验规则,详见 [Form 组件](#/zh-CN/form#rule-shu-ju-jie-gou) | _Rule[]_ | - |
| autocomplete `v3.0.3` | input 标签原生的[自动完成属性](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) | _string_ | - |
### Events

View File

@ -51,6 +51,7 @@ export default createComponent({
labelAlign: String,
inputAlign: String,
placeholder: String,
autocomplete: String,
errorMessage: String,
errorMessageAlign: String,
showWordLimit: Boolean,
@ -417,6 +418,7 @@ export default createComponent({
disabled,
readonly,
placeholder: props.placeholder,
autocomplete: props.autocomplete,
onBlur,
onFocus,
onInput,

View File

@ -419,3 +419,14 @@ test('should format value after mounted if initial modelValue is null', () => {
expect(wrapper.find('input').element.value).toEqual('');
expect(wrapper.emitted('update:modelValue')[0][0]).toEqual('');
});
test('should allow to set autocomplete attribute', () => {
const wrapper = mount(Field, {
props: {
autocomplete: 'on',
},
});
expect(wrapper.find('input').element.getAttribute('autocomplete')).toEqual(
'on'
);
});