mounted() { this.timer = setInterval(function(){ //执行内容 }, 60000); },
beforeDestroy() { clearInterval(this.timer); }