vue使用定时器不要忘记销毁 小巷陌影 2021-06-01 215 阅读1分钟 mounted() { this.timer = setInterval(() => { // this.getData(); }, 5000) }, //销毁 beforeDestroy() { clearInterval(this.timer); this.timer = ""; },