zammad/app/frontend/shared/components/ObjectAttributes/attributes/AttributeTimeUnit/AttributeTimeUnit.vue

11 lines
369 B
Vue
Raw Permalink Normal View History

<!-- Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/ -->
<script setup lang="ts">
import type { ObjectAttributeTimeUnit } from './attributeTimeUnitTypes.ts'
import type { ObjectAttributeProps } from '../../types.ts'
defineProps<ObjectAttributeProps<ObjectAttributeTimeUnit, number>>()
</script>
<template>{{ value?.toFixed(2) }}</template>