美文网首页
clearTimeout

clearTimeout

作者: 秀萝卜 | 来源:发表于2022-05-07 11:35 被阅读0次

    延迟加载,页面离开的时候清空

    this.timer = setTimeout(() => {
             this.lazy_display = true
    }, 1800)
    
        beforeDestroy() {
            clearTimeout(this.timer);
            this.timer = null;
        },
    

    相关文章

      网友评论

          本文标题:clearTimeout

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