From 43d7ad5c34884fcc01c70d2b4024acd32b8c9cdf Mon Sep 17 00:00:00 2001 From: ghost <2127840450@qq.com> Date: Sun, 3 Jan 2021 10:19:16 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8E=B0=E5=9C=A8=E5=8F=AF=E4=BB=A5=E5=8A=A8?= =?UTF-8?q?=E6=80=81=E4=BF=AE=E6=94=B9=E7=9B=B4=E6=92=AD=E8=A7=86=E9=A2=91?= =?UTF-8?q?=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 73509cc..6773e8e 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,19 @@ export default { showMultiple(){ this.isShowMultiple = !this.isShowMultiple; + }, + + watch: { + source: { + handler() { + this.show = !this.show + setTimeout(()=>{ //设置延迟执行 + this.show = !this.show + },1); + } + } } + } }