Fixed #1610 - VirtualScroller.scrollToIndex programming error

pull/1664/head
Tuğçe Küçükoğlu 2021-10-12 17:01:55 +03:00
parent bcc4bd52f5
commit b988a82eed
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ export default {
isHorizontal ? scrollTo(calculateCoord(newFirst, itemSize, contentPadding.left), 0) : scrollTo(0, calculateCoord(newFirst, itemSize, contentPadding.top)); isHorizontal ? scrollTo(calculateCoord(newFirst, itemSize, contentPadding.left), 0) : scrollTo(0, calculateCoord(newFirst, itemSize, contentPadding.top));
} }
this.first = newFirst.index; this.first = newFirst;
} }
}, },
scrollInView(index, to, behavior = 'auto') { scrollInView(index, to, behavior = 'auto') {