perspective ctx menu

This commit is contained in:
Jan Prochazka
2022-08-05 19:55:14 +02:00
parent 7dc7af0cdb
commit 25d2c129cd
6 changed files with 96 additions and 49 deletions

View File

@@ -4,9 +4,10 @@
export let value;
export let rowSpan;
export let rowData;
export let columnIndex;
</script>
<td rowspan={rowSpan}>
<td rowspan={rowSpan} data-column={columnIndex}>
{#if value !== undefined}
<CellValue {rowData} {value} />
{/if}