mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
10 lines
369 B
Vue
10 lines
369 B
Vue
<!-- 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>
|