Fixed #1205 - AutoComplete forceSelection with Multiple overwrites selection

pull/1237/head
Tuğçe Küçükoğlu 2021-04-30 18:08:23 +03:00
parent 888eb54a4c
commit e230370091
1 changed files with 3 additions and 1 deletions

View File

@ -491,7 +491,9 @@ export default {
this.$refs.input.value = '';
this.inputTextValue = '';
this.$emit('clear');
this.$emit('update:modelValue', null);
if(!this.multiple) {
this.$emit('update:modelValue', null);
}
}
}
},