在做消息的項目,當有新消息的時候讓新消息出現在最底部,此時的box用的是overflow:auto
注意:vue項目需要注意在dom結構渲染完再進行操作
<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;
})
}
}
參考博客:https://blog.csdn.net/qq_14993375/article/details/79336232?utm_source=blogxgwz1
參考博客:https://blog.csdn.net/qq_40557812/article/details/85051011