mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
add component TransactionResultSendSuccess.vue
This commit is contained in:
parent
114cd52bf9
commit
fdcc0891db
@ -0,0 +1,32 @@
|
|||||||
|
<template>
|
||||||
|
<b-container>
|
||||||
|
<b-row>
|
||||||
|
<b-col>
|
||||||
|
<b-card class="p-0 gradido-custom-background">
|
||||||
|
<div class="p-4">
|
||||||
|
{{ $t('form.thx') }}
|
||||||
|
<hr />
|
||||||
|
{{ $t('form.send_transaction_success') }}
|
||||||
|
</div>
|
||||||
|
<p class="text-center mt-3">
|
||||||
|
<b-button variant="success" @click="$emit('on-reset')">{{ $t('form.close') }}</b-button>
|
||||||
|
</p>
|
||||||
|
</b-card>
|
||||||
|
</b-col>
|
||||||
|
</b-row>
|
||||||
|
</b-container>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'TransactionResultSend',
|
||||||
|
props: {
|
||||||
|
linkResult: {
|
||||||
|
type: Object,
|
||||||
|
required: false,
|
||||||
|
default() {
|
||||||
|
return {}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
Loading…
x
Reference in New Issue
Block a user