Files
web/app/components/datatable/format/FormatDate.vue
2026-05-07 16:15:33 +07:00

11 lines
231 B
Vue

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