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

11 lines
233 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>