mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-20 05:39:40 +02:00
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
13 lines
261 B
Vue
13 lines
261 B
Vue
<template>
|
|
<div>
|
|
<RecipeExplorerPage />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import RecipeExplorerPage from "~/components/Domain/Recipe/RecipeExplorerPage.vue";
|
|
|
|
export default defineNuxtComponent({
|
|
components: { RecipeExplorerPage },
|
|
});
|
|
</script>
|