mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
27 lines
542 B
Vue
27 lines
542 B
Vue
<template>
|
|
<div class="bg-white app-box-shadow gradido-border-radius p-3">
|
|
<div class="p-4" data-test="success-message">
|
|
{{ $t('form.thx') }}
|
|
<hr />
|
|
{{ message }}
|
|
</div>
|
|
<div class="text-center mt-5">
|
|
<BButton variant="primary" @click="$emit('on-back')">
|
|
{{ $t('form.close') }}
|
|
</BButton>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import { defineProps, defineEmits } from 'vue'
|
|
|
|
defineProps({
|
|
message: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
})
|
|
|
|
defineEmits(['on-back'])
|
|
</script>
|