primevue-mirror/middleware/route.global.js

10 lines
288 B
JavaScript
Raw Normal View History

2022-12-27 08:12:25 +00:00
export default defineNuxtRouteMiddleware((to, from) => {
useNuxtApp().hook('page:finish', () => {
2022-12-27 13:04:03 +00:00
if (to.path !== from.path && history.state.scroll) {
2022-12-27 13:01:16 +00:00
window.scrollTo(history.state.scroll);
2022-12-27 08:12:25 +00:00
} else {
2022-12-27 13:01:16 +00:00
window.scrollTo(0, 0);
2022-12-27 08:12:25 +00:00
}
});
});