design: beautiful table

This commit is contained in:
Julien Calixte
2025-08-07 09:43:03 +02:00
parent f683c61bb1
commit 6ba486a216

View File

@@ -29,20 +29,22 @@ const submit = () => {
<div class="board-game-workshop prose"> <div class="board-game-workshop prose">
<aside> <aside>
<h2>Tools</h2> <h2>Tools</h2>
<table> <div class="overflow-x-auto">
<thead> <table class="table table-zebra">
<tr> <thead>
<th>Tool</th> <tr>
<th>Alias</th> <th>Tool</th>
</tr> <th>Alias</th>
</thead> </tr>
<tbody> </thead>
<tr v-for="tool in boardGameStore.tools" :key="tool.alias"> <tbody>
<td>{{ tool.name }}</td> <tr v-for="tool in boardGameStore.tools" :key="tool.alias">
<td>{{ tool.alias }}</td> <td>{{ tool.name }}</td>
</tr> <td>{{ tool.alias }}</td>
</tbody> </tr>
</table> </tbody>
</table>
</div>
</aside> </aside>
<div class="main"> <div class="main">