mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
28 lines
721 B
Vue
28 lines
721 B
Vue
<template>
|
|
<div class="redeem-valid">
|
|
<redeem-information :user="user" :amount="amount" :memo="memo" />
|
|
<b-jumbotron>
|
|
<div class="mb-3 text-center">
|
|
<b-button variant="primary" @click="$emit('redeem-link', amount)" size="lg">
|
|
{{ $t('gdd_per_link.redeem') }}
|
|
</b-button>
|
|
</div>
|
|
</b-jumbotron>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import RedeemInformation from '@/components/LinkInformations/RedeemInformation.vue'
|
|
|
|
export default {
|
|
name: 'RedeemValid',
|
|
components: {
|
|
RedeemInformation,
|
|
},
|
|
props: {
|
|
user: { type: Object, required: false },
|
|
amount: { type: String, required: false },
|
|
memo: { type: String, required: false, default: '' },
|
|
},
|
|
}
|
|
</script>
|