working on a recipe view

This commit is contained in:
vabene1111
2021-01-11 18:31:06 +01:00
parent df0cfc3677
commit 34028587fc
9 changed files with 120 additions and 74 deletions

View File

@ -0,0 +1,20 @@
<template>
<div>
<input type="checkbox">
{{ingredient.amount}}
{{ingredient.unit}}
{{ingredient.food}}
{{ingredient.note}}
</div>
</template>
<script>
export default {
name: 'Ingredient',
props: {
ingredient: Object,
servings: Number
}
}
</script>