vue---定时循环setInterval

mounted() {
this.timer = setInterval(this.getUserInfo, 15000);
},
beforeDestroy() {
clearInterval(this.timer);
},