fix: input trigger change at ie #2203
parent
7557ac9dad
commit
e5391de807
|
@ -1 +1 @@
|
|||
Subproject commit 855f278697767cd9412706506cf7b0816466ae8b
|
||||
Subproject commit 6cb6deed574c408cddcf6c9271132e36f8975168
|
|
@ -66,7 +66,7 @@ export default {
|
|||
const props = this.$props;
|
||||
const value = typeof props.value === 'undefined' ? props.defaultValue : props.value;
|
||||
return {
|
||||
stateValue: value,
|
||||
stateValue: typeof value === 'undefined' ? '' : value,
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
|
@ -172,7 +172,8 @@ export default {
|
|||
},
|
||||
handleChange(e) {
|
||||
const { value, composing } = e.target;
|
||||
if (composing && this.lazy) return;
|
||||
// https://github.com/vueComponent/ant-design-vue/issues/2203
|
||||
if ((composing && this.lazy) || this.stateValue === value) return;
|
||||
this.setValue(value, this.clearPasswordValueAttribute);
|
||||
resolveOnChange(this.$refs.input, e, this.onChange);
|
||||
},
|
||||
|
|
|
@ -28,7 +28,7 @@ export default {
|
|||
data() {
|
||||
const value = typeof this.value === 'undefined' ? this.defaultValue : this.value;
|
||||
return {
|
||||
stateValue: value,
|
||||
stateValue: typeof value === 'undefined' ? '' : value,
|
||||
};
|
||||
},
|
||||
computed: {},
|
||||
|
@ -68,7 +68,7 @@ export default {
|
|||
},
|
||||
handleChange(e) {
|
||||
const { value, composing } = e.target;
|
||||
if (composing || this.stateValue === value) return;
|
||||
if ((composing && this.lazy) || this.stateValue === value) return;
|
||||
|
||||
this.setValue(e.target.value, () => {
|
||||
this.$refs.resizableTextArea.resizeTextarea();
|
||||
|
|
Loading…
Reference in New Issue