add title to every page
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user