diff --git a/src/components/select/select.vue b/src/components/select/select.vue index e73b886..0404b47 100644 --- a/src/components/select/select.vue +++ b/src/components/select/select.vue @@ -724,7 +724,8 @@ watch: { value (val) { this.model = val; - if (val === '') this.query = ''; + // #982 + if (val === '' || val === null) this.query = ''; }, label (val) { this.currentLabel = val; -- libgit2 0.21.4