Sidebar list

This commit is contained in:
Doulrion 2025-04-08 12:40:20 +02:00 committed by Jan Hoegerle
parent 6936e5bfca
commit 3b604d75f5

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>