cronsun/web/ui/src/components/Log.vue

26 lines
417 B
Vue

<template>
<table class="ui purple table">
<thead>
<tr><th>Food</th>
<th>Calories</th>
<th>Protein</th>
</tr></thead><tbody>
<tr>
<td>Apples</td>
<td>200</td>
<td>0g</td>
</tr>
<tr>
<td>Orange</td>
<td>310</td>
<td>0g</td>
</tr>
</tbody>
</table>
</template>
<script>
export default {
name: 'log'
}
</script>