[Vuejs]-Starting the scroll to the bottom of a div tag

0๐Ÿ‘

Please try this

 window.setInterval(function() {
      var element = document.getElementById('msgss');
      element.scrollTop = element.scrollHeight;
    }, 1000);

Leave a comment