Fork me on GitHub
#re-frame
<
2021-11-04
>
nodename01:11:38

Re-com question: I’ve converted an html-table-based component to v-table but I need to have different row-height for different kinds of rows. How feasible is that and how could I do it? (Or maybe have some kinds of conceptual rows contain more than one row-height row. They’d have to drag as a unit.)

gregg01:11:55

Variable row height is not currently supported in v-table. The reason is performance. v-table aims to be as quick to scroll and jump around whether there are 100 rows or if there are 1,000,00 rows. Apart from the fact that the table is virtual in nature (i.e. only renders visible rows), fixed row height is the other important technique we used to achieve this