提交 ba5b3fce 编写于 作者: richard_1015's avatar richard_1015

fix: swiper的销毁钩子内计时器清空无效 #262

上级 e7638925
......@@ -398,8 +398,8 @@ export default {
this.updateEvent();
},
destroyed() {
this.timer = null;
this.domTimer = null;
this.timer && clearInterval(this.timer);
this.domTimer && clearTimeout(this.domTimer);
},
activated() {
if (this.keepAlive) {
......@@ -409,8 +409,8 @@ export default {
},
deactivated() {
this.keepAlive = true;
this.timer = null;
this.domTimer = null;
this.timer && clearInterval(this.timer);
this.domTimer && clearTimeout(this.domTimer);
},
};
</script>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册