KABBOUCHI / vue-tippy

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

Option animationFill does not work #216

Closed Figumari closed 2 years ago

Figumari commented 2 years ago

Setting animationFill to false has no effect on the tooltip. The material animation is still visible.

<tippy
    class="table-button-indicator"
    :interactive="true"
    :trigger="'click'"
    :animation="'fade'"
    :animation-fill="false"
    :theme="'hans-ruedi'">
    <template v-slot:trigger>
      <button class="table-button-indicator__trigger">
        <v-icon name="circle" />
      </button>
    </template>
    <table-context-menu />
</tippy>

https://user-images.githubusercontent.com/19533143/145009142-39e125b9-0e8f-4f3f-9741-b3504544a0d3.mov

KABBOUCHI commented 2 years ago

its animateFill not animationFill

Figumari commented 2 years ago

Thank you. That works. 👍 I copied this property from the documentation: https://kabbouchi.github.io/vue-tippy/4.0/features/animations.html