Files
web/app/components/datatable/format/FormatDate.vue
2026-03-02 09:45:33 +07:00

10 lines
235 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>