github KABBOUCHI/vue-tippy 4.5.0

latest releases: v6.0.0-alpha.57, v6.0.0-alpha.56, v6.0.0-alpha.55...
4 years ago
  • Remove title attribute to prevent browser native tooltip #137
  • ❗ Experimental feature:
<template>
  <button ref="btn">Composition API</button>
</template>

<script>
import { ref } from "@vue/composition-api";
import { useTippy } from "vue-tippy/composition";

export default {
  setup() {
    const btn = ref(null);

    useTippy(btn, {
      content: "Cool!"
    });

    return {
      btn
    };
  }
};
</script>

Don't miss a new vue-tippy release

NewReleases is sending notifications on new releases.