export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.hook('page:finished', () => {
console.log("Scrolling to top");
window.scrollTo({
top: 0,
left: 0,
behavior: 'smooth'
});
})
});
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.hook('page:finished', () => {
console.log("Scrolling to top");
window.scrollTo({
top: 0,
left: 0,
behavior: 'smooth'
});
})
});