VueJS Tooltip powered by Tippy.js
Vue.js 3 wrapper for Tippy.js
For Tippy.js v4 use v4 branch
For full v6 documentation, visit https://vue-tippy.netlify.app/.
npm install vue-tippy@v6
//or
yarn add vue-tippy@v6
import { createApp } from 'vue'
import VueTippy from 'vue-tippy'
// or
import { plugin as VueTippy } from 'vue-tippy'
const app = createApp({})
app.use(
VueTippy,
// optional
{
directive: 'tippy', // => v-tippy
component: 'tippy', // =>
}
)
app.mount('#app')
Tippy!
Tippy!
Tippy!
import { defineComponent, ref, h } from 'vue'
import { useTippy } from 'vue-tippy'
export default defineComponent({
setup() {
const button = ref()
useTippy(button, {
content: 'Hi!',
})
return () => h('button', { ref: button }, 'Tippy!')
},
})
No open issues yet, or sync has not completed.