[Vuejs]-Vuejs – tr row not showing 100% when adding display block

1👍

When trying to show dynamic table rows that are hidden please use:

display: 'table-row',

so in your case:

row.style.display = 'table-row';
👤MarkP

Leave a comment