VUE 定时请求接口数据

mounted() {
   this.timer = setInterval(function(){
        //执行内容
    }, 60000);
},
beforeDestroy() {
    clearInterval(this.timer);
}
原文地址:https://www.cnblogs.com/xiaoxiaoxun/p/14189457.html