File size: 516 Bytes
0ad74ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<script lang="ts">
export let value: (string | number)[][];
</script>
<table class="input-dataframe-example">
{#each value.slice(0, 3) as row}
<tr>
{#each row.slice(0, 3) as cell}
<td class="p-2">{cell}</td>
{/each}
{#if row.length > 3}
<td class="p-2">...</td>
{/if}
</tr>
{/each}
{#if value.length > 3}
<tr>
{#each Array(Math.min(4, value[0].length)) as _}
<td class="p-2">...</td>
{/each}
</tr>
{/if}
</table>
<style>
table {
border-collapse: separate;
}
</style>
|