vue组件中监听document加载完成(document.readyState)

vue组件中监听document加载完成

created() {
    const that = this;
    that.timer = setInterval(() => {
      if (document.readyState === 'complete') {
        that.toImage();
        window.clearInterval(that.timer);
      }
    }, 1000);
},

 

posted @ 2022-02-18 11:14  安静的女汉纸  阅读(1531)  评论(0编辑  收藏  举报