mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
330 B
13 lines
330 B
<template>
|
|
<div
|
|
v-for="client in clientsStore.clients"
|
|
:key="client.id"
|
|
class="relative overflow-hidden border-b last:border-b-0 border-gray-100 dark:border-neutral-600 border-solid"
|
|
>
|
|
<Client :client="client" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const clientsStore = useClientsStore();
|
|
</script>
|
|
|