29 lines
276 B
Vue
29 lines
276 B
Vue
<script setup>
|
|
|
|
const dataStore = useDataStore()
|
|
|
|
const setupPage = async () => {
|
|
console.log()
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<UDashboardNavbar
|
|
title="Eigene Felder"
|
|
>
|
|
|
|
</UDashboardNavbar>
|
|
|
|
|
|
|
|
|
|
|
|
{{dataStore.ownTenant.ownFields}}
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |