Files
hossein-por-shop/frontend/plugins/scrollToTop.client.ts
T
2025-05-24 20:57:12 +03:30

13 lines
323 B
TypeScript

export default defineNuxtPlugin((nuxtApp) => {
let previousPath: string | null = null;
nuxtApp.hook("page:finish", () => {
const currentPath = useRoute().fullPath;
if (previousPath !== currentPath) {
window.scrollTo(0, 0);
previousPath = currentPath;
}
});
});