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); + } + } } + } }