This commit is contained in:
2024-03-12 13:38:24 +01:00
parent 423b2638aa
commit 6791342879
5 changed files with 160 additions and 18 deletions

View File

@@ -0,0 +1,35 @@
<script setup>
</script>
<template>
<UDashboardNavbar title="Firmeneinstellungen">
</UDashboardNavbar>
<UTabs
class="p-5"
:items="[
{
label: 'Rechnung & Kontakt'
},{
label: 'Lizenz'
},{
label: 'Bankkonten'
},{
label: 'Tags'
}
]"
>
<template #item="{item}">
<UCard class="mt-5">
<div v-if="item.label === 'Rechnung & Kontakt'">
</div>
</UCard>
</template>
</UTabs>
</template>
<style scoped>
</style>