I am learning vue
. I have the following method where I add a chat message to a div with id=\"toolbar-chat\"
. This div allows scrolling on y axis an
If you want to scroll with animated way;
Here is the basic usage.
...
This is the method, you can use everywhere.
toScroll(refName,position){
this.messages.unshift(message);
this.$nextTick(() => {
this.$refs[refName][0].scrollTo({ top: position, behavior: 'smooth' });
});
}