how do u go top of the view when change route
Closed this issue · 0 comments
neonarc4 commented
it doesnt work when route change scroll to top i tried but didnt work
export default defineNuxtRouteMiddleware((to, from) => {
if (to.path !== from.path && process.client) {
window.scrollTo(0, 0)
}
})