parsley/app/javascript/components/FoodShow.vue
2018-09-13 14:51:41 -05:00

25 lines
266 B
Vue

<template>
<div>
<h3 class="title">
{{food.name}}
</h3>
</div>
</template>
<script>
export default {
props: {
food: {
required: true,
type: Object
}
}
}
</script>
<style lang="scss" scoped>
</style>