meal_planner/components/recipe/ingredients.vue

26 lines
602 B
Vue

<script setup lang="ts">
defineProps<{
ingredients: { name: string; quantity: number }[];
}>();
</script>
<template>
<div class="overflow-x-auto">
<table class="table table-s table-pin-rows table-pin-cols">
<thead>
<tr>
<th />
<td>Ingredient</td>
<td>Quantity</td>
</tr>
</thead>
<tbody>
<tr v-for="(ingredient, i) in ingredients" :key="i">
<th>{{ i + 1 }}</th>
<td>{{ ingredient.name }}</td>
<td>{{ ingredient.quantity }}</td>
</tr>
</tbody>
</table>
</div>
</template>