finish client brief step

This commit is contained in:
isUnknown 2024-12-20 07:19:46 +01:00
parent e4f06ad854
commit cdeebbf8c8
11 changed files with 162 additions and 234 deletions

View file

@ -0,0 +1,16 @@
<template>
<div class="card__meta | flex">
<time
class="card__date | text-grey-700"
:datetime="dayjs(date).format('YYYY-M-DD')"
>{{ dayjs(date).format("DD MMMM YYYY") }}</time
>
</div>
</template>
<script setup>
import dayjs from "dayjs";
import "dayjs/locale/fr";
const { date } = defineProps({ date: String });
</script>