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
Nest a component with an inline-template that has a ref in a v-for.
What is expected?
component.$ref.ref should point to the respective element.
What is actually happening?
component.$ref.ref is a singleton array with the element reference.
checkInFor loops over the element ancestors up to the document root, so it believes that the ref is in a loop, but it actually isn't.
The check should stop at the component root.