const itemsScroller = this.$refs.itemsScroller; itemsScroller.scrollToItem(index); if (placeTo == 'top') return; setTimeout(() => { const scrollerElement = itemsScroller.$el; const itemElement = scrollerElement.querySelector('[data-index="' + index + '"]'); if (!itemElement) { c...
zoosewu/vue-virtual-scrollerPublic forked fromAkryum/vue-virtual-scroller NotificationsYou must be signed in to change notification settings Fork0 Star0 Code Pull requests Actions Projects Security Insights Additional navigation options Files develop ...
y: ComputedRef<number> scroll position;virtualContainerHeight: ComputedRef<number> height of the virtual container;startIndex: ComputedRef<number> index of the first virtual item;endIndex: ComputedRef<number> index of the last virtual item;
We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {...
{item:unknown;position:number;nr:{id:number;index:number;key:string;type:unknown;used:boolean;};}>;getScroll():{start:number;end:number};scrollToItem(index:number):void;scrollToPosition(position:number);}exportclassDynamicScrollerextendsRecycleScroller{minItemSize:number|string;vscrollData:{active:...
scrollToPosition: function scrollToPosition(position) { if (this.direction === 'vertical') { this.$el.scrollTop = position; } else { this.$el.scrollLeft = position; } }, I do not know this code base that well (only started recently using it), It looks like scrollToPosition is not...
- `itemSize` (default: `null`): display height (or width in horizontal mode) of the items in pixels used to calculate the scroll size and position. If it is set to `null` (the default value), it will use [variable size mode](#variable-size-mode). 182 + - `gridItems`: display...