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.
16 lines
356 B
16 lines
356 B
<template>
|
|
<div
|
|
class="text-sm text-gray-700 md:text-base dark:text-neutral-200"
|
|
:title="$t('client.createdOn') + $d(new Date(client.createdAt))"
|
|
>
|
|
<span class="border-b-2 border-t-2 border-transparent">
|
|
{{ client.name }}
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
client: LocalClient;
|
|
}>();
|
|
</script>
|
|
|