gradido/frontend/src/components/DecayInformations/DecayInformation-Short.vue
Alexander Friedland 132de9d00f
Update frontend/src/components/DecayInformations/DecayInformation-Short.vue
Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>
2022-03-06 18:33:06 +01:00

16 lines
279 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="decayinformation-short">
<span> {{ decay ? $n(Number(decay.decay) * -1, 'decimal') : '' }}</span>
</div>
</template>
<script>
export default {
name: 'DecayInformation-Short',
props: {
decay: {
type: Object,
},
},
}
</script>