reset scroll position

This commit is contained in:
Kuchenpirat
2025-07-11 23:29:09 +00:00
parent 691300e481
commit 78a0f74f33
3 changed files with 174 additions and 3 deletions

View File

@@ -9,5 +9,11 @@ import RecipeExplorerPage from "~/components/Domain/Recipe/RecipeExplorerPage.vu
export default defineNuxtComponent({
components: { RecipeExplorerPage },
setup() {
// Enable scroll restoration for this page to work with our state management
definePageMeta({
scrollToTop: false,
});
},
});
</script>