mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
* Prevent extra recipe load on index page * Prevent loading recipes with food for all components but search ones * add missing change in search page
27 lines
731 B
Vue
27 lines
731 B
Vue
<template>
|
|
<v-container>
|
|
<RecipeCardSection
|
|
:icon="$globals.icons.primary"
|
|
:title="$t('general.recent')"
|
|
:recipes="recentRecipes"
|
|
:skip-load="true"
|
|
></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>
|