mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-12 13:26:45 +00:00
12 lines
314 B
Vue
12 lines
314 B
Vue
<script setup lang="ts">
|
|
const { params } = useRoute();
|
|
const { recipe, pending, error } = await useRecipe("lookup", params.id);
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="pending">Loading</div>
|
|
<div v-else-if="error">Failed: {{ error }}</div>
|
|
<section v-else>
|
|
<Recipe :recipe="recipe" />
|
|
</section>
|
|
</template>
|