20 lines
329 B
Vue
20 lines
329 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<UDashboardNavbar>
|
|
<template #center>
|
|
<h1
|
|
:class="['text-xl','font-medium']"
|
|
>Zentrales Logbuch</h1>
|
|
</template>
|
|
</UDashboardNavbar>
|
|
<UDashboardPanelContent>
|
|
<HistoryDisplay/>
|
|
</UDashboardPanelContent>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |