We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
Hi, I like this virtual scroll grid because it's faster than any of the other implementations for my use case.
For anyone still wondering if this can be used in Vue 3: Yes, it can :)
First you should import the component directly:
import VirtualCollection from "vue-virtual-collection/src/VirtualCollection.vue";
Slots were changed in 3, so use it like this:
<VirtualCollection :cellSizeAndPositionGetter="cellSizeAndPositionGetter" :collection="items" :height="height" :width="width" :sectionSize="size"> <template v-slot:cell="{ data }"> <span>{{ data.name }}</span> </template> </VirtualCollection>
There are a few deprecated lifecycle hooks used but they should be easy to fix.
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: