1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-23 07:09:41 +02:00
mealie/frontend/pages/g/_groupSlug/cookbooks/_slug.vue

13 lines
274 B
Vue
Raw Normal View History

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