cosmos-explorer/src/components/dynamic/ArrayObjectElement.vue

40 lines
986 B
Vue

<script lang="ts" setup>
import { computed } from '@vue/reactivity';
import DynamicComponent from './DynamicComponent.vue';
const props = defineProps({
value: { type: null as any },
thead: {
type: Boolean,
default: true,
},
});
const header = computed(() => {
if (props.value && props.value.length > 0) {
return Object.keys(props.value[0]);
}
return [];
});
</script>
<template>
<div class="overflow-auto max-h-96">
<table class="table table-xs table-compact table-pin-rows w-full">
<thead v-if="thead">
<tr>
<th v-for="(item, index) in header" :key="index" class="text-left capitalize">
{{ item.replace(/_/g, ' ') }}
</th>
</tr>
</thead>
<tbody>
<tr v-for="(item, index) in value" :key="index">
<td v-for="(el, key) in header" :key="key">
<DynamicComponent :value="item[el]" />
</td>
</tr>
</tbody>
</table>
</div>
</template>