mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
17 lines
269 B
Vue
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>
|