Files
system/components/datatable/format/FormatTime.vue
Xuan Loi ae1ea57130 changes
2026-01-09 17:25:23 +07:00

10 lines
228 B
Vue

<template>
<span :style="color? `color:${color}` : ''">{{ $numtoString(value) }}</span>
</template>
<script setup>
const { $numtoString } = useNuxtApp()
const props = defineProps({
value: Number,
color: String
})
</script>