vue-virtual-scroll-list icon indicating copy to clipboard operation
vue-virtual-scroll-list copied to clipboard

⚡️A vue component support big amount data list with high render performance and efficient.

Results 78 vue-virtual-scroll-list issues
Sort by recently updated
recently updated
newest added

https://github.com/tangbc/vue-virtual-scroll-list/blob/master/example/src/views/chat-room/Main.vue 这个群聊案例置顶刷新以后不会保持在当前位置应该怎么解决

question

- Currently there seems to be no way to do this - The Scroll event simply returns a range that includes buffered items as well - We have a getOffset()...

question

- I have a button outside the virtual list - When I click on this button, it will scroll to a random index in the list - How do I...

question

- Currently we can scroll to an item but it is not smooth - Take a look at what the smooth version may look [like](https://codepen.io/rleve/pen/jObeRN) - How to implement this...

question

未解决但已关闭,前情参考https://github.com/tangbc/vue-virtual-scroll-list/issues/285 @tangbc web端谷歌浏览器追加数据后,获取高度错误 示例:每次在获取数据后,都调用this.$refs.virtualListRef.getOffset()获取当前偏移量,但有时候获取不到真实的偏移量,会拿到0 **获取数据后,打印当前 getOffset 及 getScrollSize的值** ![5](https://github.com/tangbc/vue-virtual-scroll-list/assets/38268966/09fcaaa6-e970-4c8a-8290-f710fa3893a3) **实际元素高度** ![6](https://github.com/tangbc/vue-virtual-scroll-list/assets/38268966/5f53d429-a009-4e8c-a146-a5c384727c1b)

bug

https://github.com/tangbc/vue-virtual-scroll-list/blob/a4123b7a311d28c70e819812927285e92a43cd64/src/item.js#L26 低版本浏览器没有ResizeObserver这个接口,可能this.resizeObserver为空导致报错 是不是可以考虑修改为 this.resizeObserver ? this.resizeObserver.observe(this.$el) : this.dispatchSizeChange()

有没有办法增加对树形数据结构场景的支持,或者在现有基础上支持树形结构的虚拟列表渲染

suggestion

If the project is not maintained, whether to consider maintainer replacement

bug

Is there a recommended way to implement nested virtual lists? Usecase: directory structure where each nested directory is a virtual list. I was able to add virtual scrolling to the...

question

## Describe the feature request The documentation doesn't specify this, but in the source code using a `#default` slot is clearly supported. I think it would be great if that...

suggestion