You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When having hundreds of such tootltips, there is a performance issue when scrolling over the list of 1000 items as the scroll appears to be calling $_computePosition (even if no titles/tooltips are displayed to user) from Popper.ts from this code:
I have a long list of items (~1000), each item has let's say <10 tooltips made with
v-tooltip
:and then used like
When having hundreds of such tootltips, there is a performance issue when scrolling over the list of 1000 items as the scroll appears to be calling
$_computePosition
(even if no titles/tooltips are displayed to user) from Popper.ts from this code:I guess I understand why it is needed, but would it be possible to either:
_computePosition
on scroll via propsI've noticed in the
$_computePosition
there is following condition:but in my case, the
this.$_isDisposed
isfalse
so it won't bail out from the method. Not sure if thefalse
is correct or notThe text was updated successfully, but these errors were encountered: