美文网首页
vue清除定时器

vue清除定时器

作者: 月落乌啼霜满天_1f0f | 来源:发表于2020-08-19 21:23 被阅读0次
        getTime() {
            let timer = setTimeout(() => {
                this.time = tools_time.getDate();
                console.log(this.time);
                this.getTime();
            }, 1000);

            this.$once("hook:beforeDestroy", () => {
                clearTimeout(timer);
            });
        },

相关文章

网友评论

      本文标题:vue清除定时器

      本文链接:https://www.haomeiwen.com/subject/fdjdrktx.html