适用场景:数据比较多,为了提高用户体验,可以点击新增按钮页面滑动到底部
效果视频:见下方附件
具体代码实现:
this.$nextTick(() => {
const scrollTarget = this.$refs.scrollTarget
let height = scrollTarget.scrollHeight
// 滚动到底部
scrollTarget.scrollTo({ top: height, behavior: 'smooth' })
})