其他分享
首页 > 其他分享> > 设置element-iu中table滚动条位置

设置element-iu中table滚动条位置

作者:互联网

设置element-iu中table滚动条位置

  分类专栏: vue element-ui
  1.   1.设置table的ref为tableList
  2.    
  3.   2.设置滚动至顶部
  4.  
  5. this.$nextTick(()=>{
        this.$refs.tableList.bodyWrapper.scrollTop =0;
    })
    

      

  6. 3.设置滚动至底部
  7.  
    this.$nextTick(()=>{
      this.$refs.tableList.bodyWrapper.scrollTop =this.$refs.tableList.bodyWrapper.scrollHeight;Ï
    })
    

      

标签:refs,iu,tableList,bodyWrapper,element,滚动条,设置,table
来源: https://www.cnblogs.com/jason-hhc/p/13784418.html