mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
fix(Field): should not reset validation after blured (#8409)
* fix(Field): should not reset validation after blured * test(Form): add reset validation test case
This commit is contained in:
parent
2cad166226
commit
20bb718ab6
@ -238,8 +238,10 @@ export default defineComponent({
|
|||||||
return defaultTrigger;
|
return defaultTrigger;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (rules.length) {
|
||||||
validate(rules);
|
validate(rules);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// native maxlength have incorrect line-break counting
|
// native maxlength have incorrect line-break counting
|
||||||
|
36
src/form/test/index.spec.tsx
Normal file
36
src/form/test/index.spec.tsx
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
import { Form } from '..';
|
||||||
|
import { Field } from '../../field';
|
||||||
|
import { mountForm } from './shared';
|
||||||
|
import { later } from '../../../test';
|
||||||
|
|
||||||
|
test('should not reset validation after blured when validate-trigger is onChange', async () => {
|
||||||
|
const validator = (val: string) => val.length > 4;
|
||||||
|
const wrapper = mountForm({
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
value: '',
|
||||||
|
};
|
||||||
|
},
|
||||||
|
render() {
|
||||||
|
return (
|
||||||
|
<Form validateTrigger="onChange">
|
||||||
|
<Field
|
||||||
|
v-model={this.value}
|
||||||
|
name="username"
|
||||||
|
rules={[{ validator, message: 'msg' }]}
|
||||||
|
/>
|
||||||
|
</Form>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const input = wrapper.find('input');
|
||||||
|
input.element.value = '1';
|
||||||
|
await input.trigger('input');
|
||||||
|
await later();
|
||||||
|
|
||||||
|
expect(wrapper.find('.van-field__error-message').exists()).toBeTruthy();
|
||||||
|
|
||||||
|
await input.trigger('blur');
|
||||||
|
expect(wrapper.find('.van-field__error-message').exists()).toBeTruthy();
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user