I am currently in the process of switching from using v-data-table to v-virtual-scroll, but I am struggling to determine the correct syntax for the virtual scroller. Can you assist me with this, please? I want to maintain the same display as before, but now with the virtual scroller implementation.
<div v-if="import_table.display">
<v-data-table
v-if="!hide_table"
:headers="import_table.headers"
:items="import_table.data"
hide-default-footer
:items-per-page="-1"
dense
>
<!--<v-virtual-scroll
:headers="import_table.headers"
:items="import_table.data"
v-if="!hide_table" ---->**thats how i replaced**
:item-height="50"
height="300"
>-->
<template v-slot:item="{ item, index }">
<tr>
<td>
**CODE**
</td>
</tr>
</template>
</v-data-table> <!--</v-virtual-scroll>-->
It seems like the issue may lie with the tr td tags. I attempted replacing them with v-item-content, action, but nothing is being displayed.