From 177941f751d9b6f249d1076a287f6a374a842663 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E7=81=8F?= Date: Mon, 9 Sep 2019 15:08:50 +0800 Subject: [PATCH] Update select-head.vue --- src/components/select/select-head.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/select/select-head.vue b/src/components/select/select-head.vue index 10d6df89..33e29b64 100644 --- a/src/components/select/select-head.vue +++ b/src/components/select/select-head.vue @@ -225,7 +225,7 @@ this.$emit('on-input-focus'); }, onInputBlur () { - if (!this.showCreateItem) return; + if (this.showCreateItem) return; if (!this.values.length) this.query = ''; // #5155 this.$emit('on-input-blur'); },