
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
vue-tippy
Advanced tools
[](https://www.npmjs.com/package/vue-tippy) [](https://vuejs.org/) [](https://www
For Tippy.js v4 use v4 branchVue.js 3 wrapper for Tippy.js
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', // => <tippy/>
}
)
app.mount('#app')
<template>
<button v-tippy="{ content: 'Hi!' }">Tippy!</button>
<button v-tippy="'Hello!'">Tippy!</button>
</template>
<script setup>
import { directive as VTippy } from 'vue-tippy'
</script>
<template>
<Tippy content="Hi!">
<button>Tippy!</button>
</Tippy>
</template>
<script setup>
import { Tippy } from 'vue-tippy'
</script>
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!')
},
})
FAQs
[](https://www.npmjs.com/package/vue-tippy) [](https://vuejs.org/) [](https://www
The npm package vue-tippy receives a total of 77,551 weekly downloads. As such, vue-tippy popularity was classified as popular.
We found that vue-tippy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.