helson-lin
helson-lin
@chenp1204 how did you resolve it? i have got the same problem
> you can try to force update dom , when you dragging component. in my case, i add a border style: 1px solid rgba(255,255,255,0) when component position changed, and settimeout...
直接在 use 的时候传入即可,可以覆盖内置的 config ```js Vue.use(VueVirtualScroller, { // 虚拟列表的限制数量 itemsLimit: 50000 }); ``` 源码: File: `vue-virtual-scroller/src/index.js` ```js const plugin = { // eslint-disable-next-line no-undef version: VERSION, install (Vue, options) {...