add title to every page

This commit is contained in:
Adrian Zürcher
2025-11-15 14:20:03 +01:00
parent 7b17cd99fe
commit 8d9220ae2c
5 changed files with 7 additions and 32 deletions

View File

@@ -1,21 +1,11 @@
<template>
<q-page>
<h4 class="text-primary text-bold text-center">{{ $t('events') }}</h4>
<EventsTable />
<DialogFrame ref="dialog" header-title="Test Frame">
<EventsTable ref="EventDialog" />
</DialogFrame>
<DialogFrame ref="uploadDialog" header-title="Test Frame">
<EventsTable ref="EventDialog" />
</DialogFrame>
</q-page>
</template>
<script setup lang="ts">
import EventsTable from 'src/vueLib/tables/events/EventsTable.vue';
import DialogFrame from 'src/vueLib/dialog/DialogFrame.vue';
import { ref } from 'vue';
import type { EventDialog } from 'src/vueLib/tables/events/EventsTable.vue';
const dialog = ref();
const EventDialog = ref<EventDialog>();
</script>