[Vuejs]-How to get scroll behavior to work with this setup in Vue 3?

0πŸ‘

βœ…

In this case, this was the answer:

const router = createRouter({   history: createWebHashHistory(),   routes,   scrollBehavior() {     document.getElementById("RouterView").scrollTop = 0;   }, });

Leave a comment