<div class="mains" ref="chatContent">
<Dialog :text="text"/>
</div>
mounted() {
this.scrollToBottom()
},
updated(){
this.scrollToBottom()
},
methods: {
scrollToBottom() {
this.$nextTick(() =>{
this.$refs.chatContent.scrollTop = this.$refs.chatContent.scrollHeight;
})
}
}
Vue中实现聊天窗口overflow:auto自动滚动到底部,实现显示当前最新聊天消息
原文:https://www.cnblogs.com/nayek/p/12011415.html