fix(CountDown): destroy timer when Component destroyed (#2199)

This commit is contained in:
lethe 2019-10-24 21:14:47 +08:00 committed by rex
parent dd44c3be0a
commit 7be1e4ac6e

View File

@ -28,6 +28,11 @@ VantComponent({
formattedTime: '0'
},
destroyed() {
clearTimeout(this.tid);
this.tid = null;
},
methods: {
// 开始
start() {