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 }
},
Source:stackexchange.com