Files
hrm/app/components/datatable/format/FormatDate.vue
2026-04-06 15:53:14 +07:00

10 lines
248 B
Vue

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