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
Is it possible to forward event further down to component In case when on="click" option is used? It would make hydration of interactive components so much more usable.
It is mostly important for mobile, as we have "mouseenter" on desktop which, probably, would fire before user has time to click. On mobile, "cilck" (or "tap") would often be the first event page ever gets and we can't waste it
Expected behaviour:
user clicks
component is hydrated
component handles "click" event
The text was updated successfully, but these errors were encountered:
Is it possible to forward event further down to component In case when
on="click"
option is used? It would make hydration of interactive components so much more usable.It is mostly important for mobile, as we have "mouseenter" on desktop which, probably, would fire before user has time to click. On mobile, "cilck" (or "tap") would often be the first event page ever gets and we can't waste it
Expected behaviour:
The text was updated successfully, but these errors were encountered: