mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
31 lines
752 B
Vue
31 lines
752 B
Vue
<template>
|
|
<div class="redeem-self-creator">
|
|
<redeem-information :link-data="linkData" :is-contribution-link="isContributionLink" />
|
|
|
|
<BCard>
|
|
<div class="mb-3 text-center">
|
|
<div class="mt-3">
|
|
{{ $t('gdd_per_link.no-redeem') }}
|
|
<BLink to="/transactions">
|
|
<b>{{ $t('gdd_per_link.link-overview') }}</b>
|
|
</BLink>
|
|
</div>
|
|
</div>
|
|
</BCard>
|
|
</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>
|