vue elementui中使表的滚动条 滚到顶部或底部

步骤

  • 1.设置table的ref为tableList

  • 2.设置滚动至顶部

this.$refs.tableList.bodyWrapper.scrollTop =0;
  • 3.设置滚动至底部
this.$refs.tableList.bodyWrapper.scrollTop =this.$refs.tableList.bodyWrapper.scrollHeight;
  • 4.如果请求完更新数据,需要使用$nextTick
this.$nextTick(() => {
    this.$refs.tableList.bodyWrapper.scrollTop=this.$refs.tableList.bodyWrapper.scrollHeight;
})
Logo

前往低代码交流专区

更多推荐