Files
web/app/components/datatable/format/FormatTime.vue
2026-03-02 09:45:33 +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>