788e176b16
* move api clients and rename * organize recipes composables * rewrite useRecipeContext * refactor(frontend): ♻️ abstract common ingredient functionality. * feat(frontend): ✨ add scale, and back to recipe button + hide ingredients if none * update regex to mach 11. instead of just 1. * minor UX improvements Co-authored-by: Hayden K <hay-kot@pm.me>
26 lines
No EOL
713 B
Vue
26 lines
No EOL
713 B
Vue
<template>
|
|
<v-container>
|
|
<RecipeCardSection
|
|
:icon="$globals.icons.primary"
|
|
:title="$t('general.recent')"
|
|
:recipes="recentRecipes"
|
|
></RecipeCardSection>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "@nuxtjs/composition-api";
|
|
import RecipeCardSection from "~/components/Domain/Recipe/RecipeCardSection.vue";
|
|
import { useRecipes, recentRecipes } from "~/composables/recipes";
|
|
import { useStaticRoutes } from "~/composables/api";
|
|
|
|
export default defineComponent({
|
|
components: { RecipeCardSection },
|
|
setup() {
|
|
const { assignSorted } = useRecipes(false);
|
|
useStaticRoutes();
|
|
return { recentRecipes, assignSorted };
|
|
},
|
|
});
|
|
</script>
|
|
|