Sidebar list

This commit is contained in:
Doulrion 2025-04-08 12:40:20 +02:00
parent 1f4d132b7a
commit aaf3a9ed6a

View file

@ -10,13 +10,11 @@ var visible = ref(true)
<div class="card flex justify-center">
<Drawer v-model:visible="visible" header="Drawer">
<div>
<table>
<tbody>
<tr v-for="(element, index) in elements" :key="index">
<td color="white">{{ element }}</td>
</tr>
</tbody>
</table>
<ul>
<li v-for="item in elements">
<p>{{ item }}</p>
</li>
</ul>
</div>
</Drawer>
</div>