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"> <div class="card flex justify-center">
<Drawer v-model:visible="visible" header="Drawer"> <Drawer v-model:visible="visible" header="Drawer">
<div> <div>
<table> <ul>
<tbody> <li v-for="item in elements">
<tr v-for="(element, index) in elements" :key="index"> <p>{{ item }}</p>
<td color="white">{{ element }}</td> </li>
</tr> </ul>
</tbody>
</table>
</div> </div>
</Drawer> </Drawer>
</div> </div>