mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
18 lines
274 B
Vue
18 lines
274 B
Vue
<template>
|
|
<div class="decayinformation-short">
|
|
<span>
|
|
{{ decay ? $n(decay.decay, 'decimal') : '' }}
|
|
</span>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'DecayInformation-Short',
|
|
props: {
|
|
decay: {
|
|
type: Object,
|
|
},
|
|
},
|
|
}
|
|
</script>
|