parsley/app/javascript/components/FoodShow.vue

25 lines
266 B
Vue
Raw Normal View History

2018-04-02 00:10:06 -05:00
<template>
<div>
2018-09-13 14:51:41 -05:00
<h3 class="title">
{{food.name}}
</h3>
2018-04-02 00:10:06 -05:00
</div>
</template>
<script>
export default {
props: {
2018-09-11 22:56:26 -05:00
food: {
2018-04-02 00:10:06 -05:00
required: true,
type: Object
}
}
}
</script>
<style lang="scss" scoped>
</style>