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
Only mouse events seem to work on router-link due to guardEvent
if (e.button !== 0) return
The button property is only available in MouseEvent I believe. Therefore, using CustomEvent is a no go. For example, using a tap event on mobile devices.
Only mouse events seem to work on
router-link
due toguardEvent
The
button
property is only available inMouseEvent
I believe. Therefore, usingCustomEvent
is a no go. For example, using a tap event on mobile devices.https://jsfiddle.net/qaj7xyx9/1/
The text was updated successfully, but these errors were encountered: