35 lines
545 B
Vue
35 lines
545 B
Vue
<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> |