vue使用定时器不要忘记销毁

215 阅读1分钟
mounted() {
  this.timer = setInterval(() => {
    // this.getData();
  }, 5000)
},
//销毁
beforeDestroy() {
    clearInterval(this.timer);
    this.timer = "";
},