mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-04 13:05:21 +02:00
19 lines
414 B
Vue
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>
|