mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +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);
|
||||
|
||||
// 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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user