Skip to content

Commit

Permalink
Fixed #1289 - AutoComplete forceSelection with Multiple
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed May 21, 2021
1 parent 1b11f6b commit f194dc4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/autocomplete/AutoComplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,9 @@ export default {
this.$refs.input.value = '';
this.inputTextValue = '';
this.$emit('clear');
this.$emit('input', null);
if(!this.multiple) {
this.$emit('input', null);
}
}
}
},
Expand Down

0 comments on commit f194dc4

Please sign in to comment.