mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-20 21:59:40 +02:00
41 lines
1 KiB
Vue
41 lines
1 KiB
Vue
|
<template>
|
||
|
<v-container>
|
||
|
<RecipeCardSection
|
||
|
v-if="category"
|
||
|
:icon="$globals.icons.tags"
|
||
|
:title="category.name"
|
||
|
:recipes="category.recipes"
|
||
|
@sort="assignSorted"
|
||
|
></RecipeCardSection>
|
||
|
</v-container>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent, useAsync, useRoute } from "@nuxtjs/composition-api";
|
||
|
import RecipeCardSection from "~/components/Domain/Recipe/RecipeCardSection.vue";
|
||
|
import { useApiSingleton } from "~/composables/use-api";
|
||
|
import { Recipe } from "~/types/api-types/recipe";
|
||
|
|
||
|
export default defineComponent({
|
||
|
components: { RecipeCardSection },
|
||
|
setup() {
|
||
|
const api = useApiSingleton();
|
||
|
const route = useRoute();
|
||
|
const slug = route.value.params.slug;
|
||
|
|
||
|
const category = useAsync(async () => {
|
||
|
const { data } = await api.categories.getOne(slug);
|
||
|
return data;
|
||
|
}, slug);
|
||
|
return { category };
|
||
|
},
|
||
|
methods: {
|
||
|
assignSorted(val: Array<Recipe>) {
|
||
|
this.category.recipes = val;
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
</style>
|