mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 08:14:30 -04:00
14 lines
280 B
Vue
14 lines
280 B
Vue
<template>
|
|
<div>
|
|
<RecipeExplorerPage />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import RecipeExplorerPage from "~/components/Domain/Recipe/RecipeExplorerPage/RecipeExplorerPage.vue";
|
|
|
|
export default defineNuxtComponent({
|
|
components: { RecipeExplorerPage },
|
|
});
|
|
</script>
|