feat:#4 updated router and views

This commit is contained in:
Elmar Kresse
2024-05-19 21:29:59 +02:00
parent 1c22c2c227
commit 6e9dfdba31
10 changed files with 149 additions and 26 deletions

View File

@@ -1,10 +1,25 @@
<script setup lang="ts">
import CalendarViewer from "@/components/CalendarViewer.vue";
import DynamicPage from "@/view/DynamicPage.vue";
</script>
<template>
<CalendarViewer />
<DynamicPage
:hide-content="false"
:headline="$t('freeRooms.freeRooms')"
:sub-title="$t('freeRooms.detail')"
>
<template #selection="{ flexSpecs }">
<CalendarViewer
:class="flexSpecs"
/>
</template>
</DynamicPage>
</template>
<style scoped>