mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
26 lines
602 B
Vue
26 lines
602 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
ingredients: { name: string; quantity: string }[];
|
|
}>();
|
|
</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>
|