mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-21 06:09:40 +02:00
15 lines
316 B
Vue
15 lines
316 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<RecipeExplorerPage />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from "@nuxtjs/composition-api";
|
||
|
import RecipeExplorerPage from "~/components/Domain/Recipe/RecipeExplorerPage.vue";
|
||
|
|
||
|
export default defineComponent({
|
||
|
components: { RecipeExplorerPage },
|
||
|
});
|
||
|
</script>
|