39 lines
539 B
Vue
39 lines
539 B
Vue
<script setup>
|
|
|
|
definePageMeta({
|
|
layout: 'mobile',
|
|
})
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<UDashboardPanelContent>
|
|
|
|
<UButton
|
|
class="w-full my-1">
|
|
Abwesenheiten
|
|
</UButton>
|
|
<UButton
|
|
class="w-full my-1">
|
|
Kalender
|
|
</UButton>
|
|
<UButton
|
|
class="w-full my-1">
|
|
Kunden
|
|
</UButton>
|
|
<UButton
|
|
class="w-full my-1">
|
|
Lieferanten
|
|
</UButton>
|
|
<UButton
|
|
class="w-full my-1">
|
|
Objekte
|
|
</UButton>
|
|
|
|
|
|
</UDashboardPanelContent>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |