mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Field): add autocomplate prop #7877
This commit is contained in:
parent
1eb9a80436
commit
4c4d303363
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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,
|
||||
|
@ -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'
|
||||
);
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user