fix: input trigger change at ie #2203

pull/2212/head
tangjinzhou 2020-05-06 15:05:08 +08:00
parent 7557ac9dad
commit e5391de807
3 changed files with 6 additions and 5 deletions

@ -1 +1 @@
Subproject commit 855f278697767cd9412706506cf7b0816466ae8b
Subproject commit 6cb6deed574c408cddcf6c9271132e36f8975168

View File

@ -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);
},

View File

@ -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();