vue-cli watch/timer
Posted wanan-01
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-cli watch/timer相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
vue-cli在index.html判断环境变量加载不同代码