离开页面关闭定时器vue

var timer = setInterval(() => {
          console.log('hahaha');
        }, 5000);
this.$once('hook:beforeDestroy',() => {
          clearInterval(timer )
          timer = null;
        })

  

原文地址:https://www.cnblogs.com/baixinL/p/13564052.html