適用場(chǎng)景:數(shù)據(jù)比較多,為了提高用戶體驗(yàn),可以點(diǎn)擊新增按鈕頁面滑動(dòng)到底部
效果視頻:見下方附件
具體代碼實(shí)現(xiàn):
this.$nextTick(() => {
const scrollTarget = this.$refs.scrollTarget
let height = scrollTarget.scrollHeight
// 滾動(dòng)到底部
scrollTarget.scrollTo({ top: height, behavior: 'smooth' })
})