1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-04 13:05:21 +02:00
mealie/frontend/pages/g/[groupSlug]/index.vue
2025-07-11 23:29:09 +00:00

19 lines
414 B
Vue

<template>
<div>
<RecipeExplorerPage />
</div>
</template>
<script lang="ts">
import RecipeExplorerPage from "~/components/Domain/Recipe/RecipeExplorerPage.vue";
export default defineNuxtComponent({
components: { RecipeExplorerPage },
setup() {
// Enable scroll restoration for this page to work with our state management
definePageMeta({
scrollToTop: false,
});
},
});
</script>