From e55a1d871391636efd7d6723a5b20f7feb64099e Mon Sep 17 00:00:00 2001 From: kuaifan Date: Thu, 7 Apr 2022 22:51:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=9A=E5=91=98=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E6=A1=86=E5=81=B6=E5=B0=94=E5=87=BA=E7=8E=B0=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=80=BC=E9=94=99=E8=AF=AF=E7=9A=84=E6=83=85=E5=86=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/assets/js/components/UserInput.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/resources/assets/js/components/UserInput.vue b/resources/assets/js/components/UserInput.vue index 9721af58d..06148e0b7 100755 --- a/resources/assets/js/components/UserInput.vue +++ b/resources/assets/js/components/UserInput.vue @@ -129,7 +129,10 @@ watch: { value: { handler() { - this.valueChange() + const tmpId = this._tmpId = $A.randomString(6) + setTimeout(() => { + if (tmpId === this._tmpId) this.valueChange() + }, 10) }, immediate: true, },