Una

接下来的日子,陆续把未总结的问题补充起来......

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

一、解决方案:

加上异步setTimeout,延迟获取dom的代码的执行

mounted() {
    // debugger
    this.$nextTick(()=> {
        setTimeout(()=> {
        let el = document.querySelector('.table')
        console.log(el)
        if(el) {
          // debugger
          this.offsetTop = el.offsetTop
          window.onscroll = () => this.getInvitationRecordUserList(this)
        }
      })
    })
  },  

  

任务:

  1、搞清楚vue中dom的渲染过程  

  2、vue技术揭秘:深入响应式原理代码分析(https://ustbhuangyi.github.io/vue-analysis/reactive/reactive-object.html#initstate)

posted on 2018-10-10 21:13  youyi2016  阅读(13132)  评论(0编辑  收藏  举报