[Vuejs]-Vuetify @click not work when swipe/zoom-in/zoom out in mobile browser,I'm not sure what kind of gesture it is

0👍

You have to use Touch events from Web Api.
Link on MDN Web doc’s – https://developer.mozilla.org/en-US/docs/Web/API/Touch_events
So, for example, if you want to trigger event on touch end it will be:

<v-list-item avatar ripple @touchend="rssHandler()">

Leave a comment