KABBOUCHI / vue-tippy

VueJS Tooltip powered by Tippy.js
https://vue-tippy.netlify.app
MIT License
722 stars 86 forks source link

how to call solt's lifecycle when hidden? #275

Closed cfmj closed 1 year ago

cfmj commented 1 year ago

how to call solt's lifecycle when hidden

KABBOUCHI commented 1 year ago

Component:

<tippy @hidden="() => {}" />

Directive:

<button v-tippy="{ onHidden : () => {}}" />

Composition API:

useTippy(btn, {
  onHidden() {

  }
})