[Vuejs]-Nuxt โ€“ different scrollToTop behaviour depending on which page you come from

0๐Ÿ‘

โœ…

I was able to resolve it by using the router.scrollBehavior property inside nuxt.config.js. The following will scrollToTop except if your are to and from are this same specific page.

scrollBehavior(to, from, savedPosition) {
  if (to.name === 'index-Product-id-productname' && from.name === 'index-Product-id-productname') return
  return { x: 0, y: 0 }
},

Leave a comment