多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
vue中定时器设置和关闭页面时关闭定时器 methods中 ~~~ setTime() //设置定时器 { this.clearTimeSet=setInterval(() => { console.log(111); }, 1000); }, clearTime() //清除定时器 { clearInterval(this.clearTimeSet); } ~~~ mounted 和新建beforeDestroy: ``` mounted : function () //页面加载完毕就开始加载定时器 { this.setTime(); }, beforeDestroy() { //页面关闭时清除定时器 clearInterval(this.clearTimeSet); }, ```