2021-10-03 17:56:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: WTF Kooperative eG <https://wtf-eg.de/>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
-->
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="container mb-5">
|
|
|
|
<h3 class="text-center">
|
|
|
|
{{ title }}
|
|
|
|
</h3>
|
|
|
|
<div class="card w-100">
|
2021-10-18 20:45:18 +02:00
|
|
|
<slot name="card-body">
|
2024-08-21 20:25:28 +02:00
|
|
|
<div class="card-body bg-white">
|
2021-10-18 20:45:18 +02:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</slot>
|
2021-10-03 17:56:52 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
title: String
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|