diff --git a/src/components/select/select.vue b/src/components/select/select.vue index 9b8999f3..7741b781 100644 --- a/src/components/select/select.vue +++ b/src/components/select/select.vue @@ -442,7 +442,7 @@ const model = this.model; if (this.multiple) { - // + this.query = ''; } else { if (model !== '') { this.findChild((child) => { @@ -450,6 +450,8 @@ this.query = child.label === undefined ? child.searchLabel : child.label; } }); + } else { + this.query = ''; } } }, 300);