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