Files
web/app/components/common/FormatDate.vue
2026-06-09 15:09:42 +07:00

11 lines
176 B
Vue

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