Files
web/app/components/datatable/format/FormatDate.vue
2026-05-05 11:06:49 +07:00

11 lines
240 B
Vue

<template>
<span :style="color ? `color:${color}` : ''">{{ $dayjs(date).format("DD/MM/YYYY") }}</span>
</template>
<script setup>
const { $dayjs } = useNuxtApp();
const props = defineProps({
date: String,
color: String,
});
</script>