fixed #718
This commit is contained in:
parent
59e1a7c6c1
commit
83b7388598
4 changed files with 15 additions and 44 deletions
|
@ -493,7 +493,7 @@
|
|||
this.query = query;
|
||||
},
|
||||
modelToQuery() {
|
||||
if (!this.multiple && this.filterable && this.model) {
|
||||
if (!this.multiple && this.filterable && this.model !== undefined) {
|
||||
this.findChild((child) => {
|
||||
if (this.model === child.value) {
|
||||
if (child.label) {
|
||||
|
@ -518,6 +518,9 @@
|
|||
},
|
||||
mounted () {
|
||||
this.modelToQuery();
|
||||
this.$nextTick(() => {
|
||||
this.broadcastQuery('');
|
||||
});
|
||||
|
||||
this.updateOptions(true);
|
||||
document.addEventListener('keydown', this.handleKeydown);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue