Files
web/app/components/common/FormatDate.vue
2026-07-02 09:37:09 +07:00

10 lines
143 B
Vue

<script setup>
const props = defineProps({
date: String,
});
</script>
<template>
<span>{{ $dayjs(date).format("L") }}</span>
</template>