Introduced EntityShowSubComponents
This commit is contained in:
28
components/EntityShowSubCostCentreReport.vue
Normal file
28
components/EntityShowSubCostCentreReport.vue
Normal 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>
|
||||
Reference in New Issue
Block a user