Files
web/app/components/datatable/format/FormatDate.vue
2026-06-09 11:18:21 +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>