vue-virtual-scroller
vue-virtual-scroller copied to clipboard
⚡️ Blazing fast scrolling for any amount of data
### Describe the bug Hi, I have found a bug in the `RecycleScroller`. It is reproducible by my provided example. If I re-compute my items array in `` from e.g....
### Describe the bug Hi, I just figured out that my `` does not reactivley updates if I use _splice_ on my reactive **items** in order to add or remove...
### Clear and concise description of the problem   ### Suggested solution key-field and index must be consistent otherwise the size of the computed could be 0. ``` //...
This is a PR for solution proposed by @NguyenHoan2201 in the issue below: [#821 - iphone safari scroll up flicker](https://github.com/Akryum/vue-virtual-scroller/issues/821) I've tested the fix and it works.
### Describe the bug Hello, I've encountered an issue with RecycleScroller while displaying a list of 10,000 items. When I scroll quickly using the scrollbar (not the mouse wheel), some...
### Describe the bug I encountered a bug related to the nested usage of components provided by `vue-virtual-scroll`. The nesting involves an outer vertical virtual list and an inner horizontal...
### Describe the bug When using,` Events: scroll end` cannot be triggered correctly ### Reproduction The same code is triggered normally when using ### System Info ```shell win10, chrome ```...
### Clear and concise description of the problem When I try to use CSS’s `overflow: hidden` and control the scroll position through JavaScript’s `scrollTop` or `scrollLeft`, the scrolling behavior works...
### Describe the bug I use nuxt 3 and have registered components in plugin. Here is my component usage code: ``` {{ item.label }} const TABLE_ROW_SIZE = 40; const items...
### Describe the bug I have created a div and flex properties table. Cells have a clearly defined width, for example 400 pixels. Accordingly, part of the table does not...