Files
web_server/nginx/vue/src/components/home/Favorites.vue
2026-01-06 21:57:33 +00:00

40 lines
1.1 KiB
Vue

<template>
<div class="flex-col">
<h2>favs</h2>
<div class="fill flex-col center-content scroll">
<table>
<tbody>
<tr>
<th>Color</th>
<td>Aqua</td>
</tr>
<tr>
<th>Pet</th>
<td>Cat</td>
</tr>
<tr>
<th>Subject</th>
<td>Math</td>
</tr>
<tr>
<th>Drink</th>
<td>Monster</td>
</tr>
<tr>
<th>Sport</th>
<td>Running</td>
</tr>
<tr>
<th>Color</th>
<td>Aqua</td>
</tr>
<tr>
<th>Ingredient</th>
<td>Eggs</td>
</tr>
</tbody>
</table>
</div>
</div>
</template>