[SOLVED] V2 Vue taphold event

I am building a cordova app and I’m using Framework7 and Framework7-Vue. When dynamically building a media-list I need to attach a taphold event to each li but I’m not sure how to do that in my vue markup.

I have tried some vue plugins but they fire on page load.

something like:

<f7-list>
  <f7-list @taphold.native="onTapHold" ...>
  ...
</f7-list>
2 Likes

Perfect, that worked! I looked for an entire day for this in documentation and could never find this.