VUE 定时请求接口数据
时间:2020-12-25 17:48:53
收藏:0
阅读:224
mounted() { this.timer = setInterval(function(){ //执行内容 }, 60000); },
beforeDestroy() { clearInterval(this.timer); }
原文:https://www.cnblogs.com/xiaoxiaoxun/p/14189457.html
评论(0)