mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
31 lines
760 B
Vue
31 lines
760 B
Vue
<template>
|
|
<div class="redeem-self-creator">
|
|
<redeem-information v-bind="linkData" :isContributionLink="isContributionLink" />
|
|
|
|
<b-jumbotron>
|
|
<div class="mb-3 text-center">
|
|
<div class="mt-3">
|
|
{{ $t('gdd_per_link.no-redeem') }}
|
|
<b-link to="/transactions">
|
|
<b>{{ $t('gdd_per_link.link-overview') }}</b>
|
|
</b-link>
|
|
</div>
|
|
</div>
|
|
</b-jumbotron>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import RedeemInformation from '@/components/LinkInformations/RedeemInformation'
|
|
|
|
export default {
|
|
name: 'RedeemSelfCreator',
|
|
components: {
|
|
RedeemInformation,
|
|
},
|
|
props: {
|
|
linkData: { type: Object, required: true },
|
|
isContributionLink: { type: Boolean, default: false },
|
|
},
|
|
}
|
|
</script>
|