mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
38 lines
786 B
Vue
38 lines
786 B
Vue
<template>
|
|
<b-row>
|
|
<b-col>
|
|
<b-card class="p-0 gradido-custom-background">
|
|
<div class="h3 mb-4">{{ $t('gdd_per_link.created') }}</div>
|
|
|
|
<clipboard-copy :link="link" />
|
|
|
|
<div class="text-center">
|
|
<figure-qr-code :text="link" />
|
|
|
|
<b-button variant="success" @click="$emit('on-reset')" class="mt-4">
|
|
{{ $t('form.close') }}
|
|
</b-button>
|
|
</div>
|
|
</b-card>
|
|
</b-col>
|
|
</b-row>
|
|
</template>
|
|
<script>
|
|
import ClipboardCopy from '../ClipboardCopy.vue'
|
|
import FigureQrCode from '../QrCode/FigureQrCode.vue'
|
|
|
|
export default {
|
|
name: 'TransactionResultLink',
|
|
components: {
|
|
ClipboardCopy,
|
|
FigureQrCode,
|
|
},
|
|
props: {
|
|
link: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
}
|
|
</script>
|