gradido/frontend/src/components/DecayInformations/DecayInformation-Short.vue
2022-03-17 16:44:06 +01:00

17 lines
269 B
Vue

<template>
<div class="decayinformation-short">
<span v-if="decay">{{ decay | GDD }}</span>
</div>
</template>
<script>
export default {
name: 'DecayInformation-Short',
props: {
decay: {
type: String,
required: true,
},
},
}
</script>