From cb332a6270a4fecee868e232a93eabd6ebbc4ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E4=BA=9A=E7=90=AA?= Date: Thu, 6 Jun 2024 11:49:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Dclear=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E7=82=B9=E4=B8=8D=E5=88=B0=E7=9A=84Bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/input-data/input-data.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/input-data/input-data.vue b/components/input-data/input-data.vue index c19192e3..627c7b20 100644 --- a/components/input-data/input-data.vue +++ b/components/input-data/input-data.vue @@ -50,7 +50,9 @@ this.$emit('confirm', this.getValue(this.inputClearValue)) }, blur() { - this.showClearIcon = false + setTimeout(() => { + this.showClearIcon = false + }, 100) }, focus() { let inputValue = this.inputClearValue -- GitLab