mounted() { this.timer = setInterval(function(){ //执行内容 }, 60000); },
beforeDestroy() { clearInterval(this.timer); }
VUE 定时请求接口数据
原文:https://www.cnblogs.com/xiaoxiaoxun/p/14189457.html