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
Does the v-b-hover directive provide a convenient way of passing not only true/false, but also a custom parameter? If you have multiple elements on your page, it can become quite tedious and resource intensive to create a large set of handlers.
For the time being, I resorted back to using the event hooks directly on all the elements, similar to as the directive: @mouseenter="onHover(0) @mouseleave="onUnhover(0) and so on (see also comments at end of #4771 for more use cases)
The text was updated successfully, but these errors were encountered:
Does the
v-b-hover
directive provide a convenient way of passing not only true/false, but also a custom parameter? If you have multiple elements on your page, it can become quite tedious and resource intensive to create a large set of handlers.For the time being, I resorted back to using the event hooks directly on all the elements, similar to as the directive:
@mouseenter="onHover(0) @mouseleave="onUnhover(0)
and so on (see also comments at end of #4771 for more use cases)The text was updated successfully, but these errors were encountered: