0👍
✅
You can do this in router.
https://router.vuejs.org/guide/advanced/scroll-behavior.html
scrollBehavior() {
document.getElementById('app').scrollIntoView({ behavior: 'smooth' });
}
or
scrollBehavior (to, from, savedPosition) {
return { x: 0, y: 0 }
}
Source:stackexchange.com