ehsan-shv/vb-smooth

how do u go top of the view when change route

Closed this issue · 0 comments

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)
  }
})