From a3fb02fe7fd96eed609eb607c05f8c7db3590ed2 Mon Sep 17 00:00:00 2001 From: liusongbai Date: Sat, 15 Jan 2022 16:14:36 +0800 Subject: [PATCH] =?UTF-8?q?Select:=20fix=20=E7=AC=AC=E4=B8=80=E6=AC=A1?= =?UTF-8?q?=E8=BE=93=E5=85=A5=E5=80=BC=E4=B8=8E=E7=AC=AC=E4=BA=8C=E6=AC=A1?= =?UTF-8?q?=E8=BE=93=E5=85=A5=E5=80=BC=E5=AE=8C=E5=85=A8=E6=97=B6=E4=B8=80?= =?UTF-8?q?=E6=A0=B7=E6=97=A0=E6=B3=95=E8=A7=A6=E5=8F=91=E9=87=8D=E6=96=B0?= =?UTF-8?q?=E7=AD=9B=E9=80=89=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/select/src/select.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/select/src/select.vue b/packages/select/src/select.vue index 031337510..a19c6029f 100644 --- a/packages/select/src/select.vue +++ b/packages/select/src/select.vue @@ -459,7 +459,7 @@ } }, handleQueryChange(val) { - if (this.previousQuery === val || this.isOnComposition) return; + if (this.isOnComposition) return; if ( this.previousQuery === null && (typeof this.filterMethod === 'function' || typeof this.remoteMethod === 'function')