Introduced EntityShowSubComponents

This commit is contained in:
2025-03-28 17:05:08 +01:00
parent ea6181265d
commit a3bec6a9b1
8 changed files with 745 additions and 429 deletions

View File

@@ -0,0 +1,28 @@
<script setup>
const props = defineProps({
queryStringData: {
type: String
},
item: {
type: Object,
required: true
},
topLevelType: {
type: String,
required: true
}
})
</script>
<template>
<UCard class="mt-5 scroll" style="height: 80vh">
<costcentre-display :item="props.item"/>
</UCard>
</template>
<style scoped>
</style>