vue-virtual-scroll-list
vue-virtual-scroll-list copied to clipboard
⚡️A vue component support big amount data list with high render performance and efficient.
我自己写了一个不定高度的虚拟列表demo,我给了一定的缓存区,当滚轮移动过快时,仍然会存在白屏问题,能不能帮我解决一下 ```html 不定高度的虚拟列表 .list { height: 400px; width: 300px; outline: 1px solid seagreen; overflow-x: hidden; } .list-item { outline: 1px solid red; outline-offset:-2px; background-color: #fff; } const throttle = (callback)...
## 建议支持skeleton加载骨架屏来代替原有的不渲染部分,这样当滚动过快时,白屏也就替换为了加载屏
有时候并没有使用构建工具开发,仅仅是一个比较小的列表展示功能,直接使用了Vue的CDN版本,也没有使用子组件的方式去开发,这种情况如果需要用本组件就需要额外创建一个新的子组件,如果可以支持slot直接写就更好了,更方便使用CDN的方式去使用。 比如: ` {{index}} `
**What kind of this PR?** (check at least one) - [ ] Bugfix - [x] Feature - [ ] Code style update - [ ] Build-related changes - [ ]...
Component `massage-eidtor` has typo error in word `massage` )) https://github.com/tangbc/vue-virtual-scroll-list/blob/master/example/src/views/chat-room/Main.vue#L32
in my data component: ``` {{ source.text }} ``` height of div in my component is dynamic, and when i scroll, the view is "blink". it seems that the logic...
List is working fine when using without infinite scroll. I'm fetching data from database and working fine when scroll down but when try to scroll up and it start fluctuating...
## 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...
## Describe Based on the example found [here](https://github.com/tangbc/vue-virtual-scroll-list/issues/1#issuecomment-294076938). When changing the order of the items in the `data-sources`, we can see in the vue devtools that the `VirtualListItem` are correctly...