25 lines
266 B
Vue
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> |