28 lines
369 B
Vue
28 lines
369 B
Vue
<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> |