feat:#4 added input and translation

This commit is contained in:
Elmar Kresse
2024-05-20 01:28:57 +02:00
parent 20d697d105
commit eb21c22d17
3 changed files with 26 additions and 5 deletions

View File

@@ -11,14 +11,23 @@ import DynamicPage from "@/view/DynamicPage.vue";
<template>
<DynamicPage
:hide-content="false"
:headline="$t('freeRooms.freeRooms')"
:sub-title="$t('freeRooms.detail')"
:headline="$t('userCalender.headline')"
:sub-title="$t('userCalender.subTitle')"
>
<template #selection="{ flexSpecs }">
<CalendarViewer
<template #selection="{ flexSpecs }">
<InputText
:placeholder="$t('userCalender.searchPlaceholder')"
:class="flexSpecs"
/>
</template>
<Button
:label="$t('userCalender.searchButton')"
icon="pi pi-refresh"
/>
</template>
<template #content>
<CalendarViewer
/>
</template>
</DynamicPage>
</template>