mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
22 lines
432 B
Vue
22 lines
432 B
Vue
<template>
|
|
<div class="redeemed-text-box">
|
|
<b-jumbotron bg-variant="muted" text-variant="dark" border-variant="info">
|
|
<h1>
|
|
{{ text }}
|
|
</h1>
|
|
</b-jumbotron>
|
|
|
|
<div class="text-center">
|
|
<b-button to="/overview">{{ $t('back') }}</b-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'RedeemedTextBox',
|
|
props: {
|
|
text: { type: String, required: true },
|
|
},
|
|
}
|
|
</script>
|