mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
22 lines
536 B
Vue
22 lines
536 B
Vue
<template>
|
|
<div class="redeem-information">
|
|
<b-jumbotron bg-variant="muted" text-variant="dark" border-variant="info">
|
|
<h1>
|
|
{{ firstName }}
|
|
{{ $t('transaction-link.send_you') }} {{ amount | GDD }}
|
|
</h1>
|
|
<b>{{ memo }}</b>
|
|
</b-jumbotron>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'RedeemInformation',
|
|
props: {
|
|
firstName: { type: String, required: true },
|
|
amount: { type: String, required: true },
|
|
memo: { type: String, required: true, default: '' },
|
|
},
|
|
}
|
|
</script>
|