I am currently working on a chat application, but I am facing an issue with scrolling to the bottom when new messages are received. I have attempted both methods:
document.getElementById('msg_history').scrollTop = document.getElementById('msg_history').scrollHeight
and
this.$refs.msg_history.scrollTop = this.$refs.msg_history.scrollHeight
However, the scrollTop value remains unchanged and the scroll does not move to the bottom.
Here is the link to my code: https://codepen.io/c7n/pen/xxKroNY
Thank you, Chung Tran