* Reimplemented tables in Vue * Updated table configuration to remove table namespace, and support column width in future. * Fixed table configuration persistence * Updated vue tables to use ES6 style function notation
6 lines
307 B
HTML
6 lines
307 B
HTML
<tr :style="{ top: rowTop }" :class="rowLimitClass">
|
|
<td v-for="(title, key, headerIndex) in headers"
|
|
:style="{ width: columnWidths[headerIndex], 'max-width': columnWidths[headerIndex]}"
|
|
:title="formattedRow[key]"
|
|
:class="cellLimitClasses[key]">{{formattedRow[key]}}</td>
|
|
</tr> |