12345678910111213141516171819 |
- <script setup lang="ts">
- import { PropType } from 'vue'
- import { Descriptions, DescriptionsSchema } from '@common/src/components/Descriptions'
- defineProps({
- currentRow: {
- type: Object,
- default: () => {}
- },
- detailSchema: {
- type: Array as PropType<DescriptionsSchema[]>,
- default: () => []
- }
- })
- </script>
- <template>
- <Descriptions :schema="detailSchema" :data="currentRow" />
- </template>
|