Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/api-generator/src/locale/en/VDataTableVirtual.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"update:sortBy": "Emits when the **sortBy** prop is updated."
},
"exposed": {
"calculateVisibleItems": "Trigger updating the currently rendered items based on scroll position."
"calculateVisibleItems": "Trigger updating the currently rendered items based on scroll position.",
"containerRef": "Reference to the internal scroll container element (`.v-table__wrapper`). Use this to attach `IntersectionObserver`, scroll listeners, or implement infinite scroll without relying on internal class names."
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@ export const VDataTableVirtual = genericComponent<new <T extends readonly any[],
return {
calculateVisibleItems,
scrollToIndex,
containerRef,
}
},
})
Expand Down
Loading