1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-27 17:19:40 +02:00
mealie/frontend/pages/g/[groupSlug]/cookbooks/[slug].vue

12 lines
220 B
Vue
Raw Permalink Normal View History

<template>
<CookbookPage />
</template>
<script lang="ts">
import CookbookPage from "@/components/Domain/Cookbook/CookbookPage.vue";
export default defineNuxtComponent({
components: { CookbookPage },
});
</script>