fix(Field): should not trigger validation after blurring readonly input (#9862)

This commit is contained in:
neverland 2021-11-15 10:46:34 +08:00 committed by GitHub
parent 3dcd8c7693
commit db97581969
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -310,13 +310,16 @@ export default defineComponent({
nextTick(adjustTextareaSize);
// readonly not work in legacy mobile safari
const readonly = getProp('readonly');
if (readonly) {
if (getProp('readonly')) {
blur();
}
};
const onBlur = (event: Event) => {
if (getProp('readonly')) {
return;
}
state.focused = false;
updateValue(getModelValue(), 'onBlur');
emit('blur', event);