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
If you tap twice - the event is fired twice, nothing that the Navigator should fix. In general, you need to debounce your viewPost method - there are many ways to do it, just look for js debounce or vue debounce method.
I would do something like (not tested this - only from memory):
If I quickly tap a link twice, it opens the sub-page twice on top of each other. Need to tap "back" twice to get home again.
template:
<StackLayout v-for='(post, index) in resources[path]' :key='index' @onTap='viewPost(post)'>
method:
The text was updated successfully, but these errors were encountered: