watch 监听函数
data:{ letter:‘‘ }, watch:{ letter(){ xxxxxx } },
timer
data(){ return{ timer:null } }, handletimer(e){ if(this.timer){ clearTimeout(this.timer) } this.timer=setTimeout(()=>{ },16) }
vue-cli watch/timer
原文:https://www.cnblogs.com/wanan-01/p/10126321.html