Question from a newbie:
I want the page to automatically scroll to the bottom once it's fully loaded. Can someone help me with this?
This is the JavaScript code I'm struggling to integrate into Vue:
let scrollToBottom = () => {
window.scrollTo(0, document.body.scrollHeight);
}
window.addEventListener("load", scrollToBottom);