mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
11 lines
272 B
Vue
11 lines
272 B
Vue
<script setup lang="ts">
|
|
const { recipe, pending, error } = await useRecipe("random");
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="pending">Loading</div>
|
|
<div v-else-if="error">Failed: {{ error }}</div>
|
|
<section v-else>
|
|
<Recipe :recipe="recipe" />
|
|
</section>
|
|
</template>
|