25 lines
626 B
Vue
25 lines
626 B
Vue
|
<template>
|
||
|
<MainTemplate :showBack="false">
|
||
|
<template #headerInsert>
|
||
|
<RouterLink
|
||
|
:to="{
|
||
|
name: 'public-calendar',
|
||
|
}"
|
||
|
class="mid:hidden text-primary"
|
||
|
>
|
||
|
zum Kalender
|
||
|
</RouterLink>
|
||
|
</template>
|
||
|
<template #topBar>
|
||
|
<div class="flex flex-row items-center gap-2 pt-5 pb-3 px-7">
|
||
|
<h1 class="font-bold text-xl h-8">Kalender-Erklärung</h1>
|
||
|
</div>
|
||
|
</template>
|
||
|
<template #main> Kalender-Erklärung zur Nutzung </template>
|
||
|
</MainTemplate>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import MainTemplate from "@/templates/Main.vue";
|
||
|
</script>
|