从这位大哥这看到的
https://blog.csdn.net/weixin_42981560/article/details/93875904
我的需求是将"评论"的list列表的滚动条固定在底部,每当有新的评论,或者添加了评论就能看到最新的.
mounted() {
this.scrollToBottom();
},
updated: () {
this.scrollToBottom();
},
method(){
scrollToBottom() {
this.$nextTick(() => {
var container = this.$el.querySelector("#你要实现滚动条置底的元素ID");
container.scrollTop = container.scrollHeight;
})
}
}
最后
以上就是苹果自行车最近收集整理的关于Vue 将某个元素的滚动条固定在底部的全部内容,更多相关Vue内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复