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
334 B
13 lines
334 B
<template>
|
|
<div
|
|
v-for="client in clientsStore.clients"
|
|
:key="client.id"
|
|
class="relative overflow-hidden border-b border-solid border-gray-100 last:border-b-0 dark:border-neutral-600"
|
|
>
|
|
<ClientCard :client="client" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const clientsStore = useClientsStore();
|
|
</script>
|
|
|