vue项目中使用定时器,离开页面时清除定时器时间:2024-03-12 09:11:19 使用 beforeRouteLeave(to, from, next) { if (this.Timer) { clearInterval(this.Timer); } next(); },