vtimofeev / vue-check-view

ISC License
115 stars 20 forks source link

viewHandler params #11

Closed thanosalexander closed 4 years ago

thanosalexander commented 4 years ago

Hi.. is it possible to add the functionality to pass extra params into viewHandler alongside with the event? eg v-view="viewHandler($event,message)"

saitergun commented 4 years ago

you can do like this:

<span v-view="(e) => viewHandler(e, param)" />
thanosalexander commented 4 years ago

Thank you!!!