Fixed #1205 - AutoComplete forceSelection with Multiple overwrites selection
parent
888eb54a4c
commit
e230370091
|
@ -491,9 +491,11 @@ export default {
|
||||||
this.$refs.input.value = '';
|
this.$refs.input.value = '';
|
||||||
this.inputTextValue = '';
|
this.inputTextValue = '';
|
||||||
this.$emit('clear');
|
this.$emit('clear');
|
||||||
|
if(!this.multiple) {
|
||||||
this.$emit('update:modelValue', null);
|
this.$emit('update:modelValue', null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
isSelected(val) {
|
isSelected(val) {
|
||||||
let selected = false;
|
let selected = false;
|
||||||
|
|
Loading…
Reference in New Issue