[Vuejs]-ScrollTop on a div, Vuejs

1👍

The scrollTop function is part of the window object or the element itself

in your case it would be:

topElement.scrollTo (100,0)

docs: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollTo

0👍

var topElement =  document.querySelector('.question-editor');
    topElement.scrollIntoView(true);

For more clarity doc: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView

👤Sohan

Leave a comment