mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Field): should not trigger validation after blurring readonly input (#9862)
This commit is contained in:
parent
3dcd8c7693
commit
db97581969
@ -310,13 +310,16 @@ export default defineComponent({
|
|||||||
nextTick(adjustTextareaSize);
|
nextTick(adjustTextareaSize);
|
||||||
|
|
||||||
// readonly not work in legacy mobile safari
|
// readonly not work in legacy mobile safari
|
||||||
const readonly = getProp('readonly');
|
if (getProp('readonly')) {
|
||||||
if (readonly) {
|
|
||||||
blur();
|
blur();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const onBlur = (event: Event) => {
|
const onBlur = (event: Event) => {
|
||||||
|
if (getProp('readonly')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
state.focused = false;
|
state.focused = false;
|
||||||
updateValue(getModelValue(), 'onBlur');
|
updateValue(getModelValue(), 'onBlur');
|
||||||
emit('blur', event);
|
emit('blur', event);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user