# vue-tippy

> [![npm](https://img.shields.io/npm/v/vue-tippy/latest.svg)](https://www.npmjs.com/package/vue-tippy) [![vue2](https://img.shields.io/badge/vue-3.x-brightgreen.svg)](https://vuejs.org/) [![download](https://img.shields.io/npm/dt/vue-tippy.svg)](https://www

Latest version **6.8.0** (published 2026-09-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install vue-tippy
pnpm add vue-tippy
yarn add vue-tippy
bun add vue-tippy
```

## Health

**Score 65/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high maintenance score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 6.8.0 |
| Published | 2026-09-15 |
| First published | 2017-04-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 849.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | kabbouchi |

## Links

- npm: https://www.npmjs.com/package/vue-tippy
- npm.io page: https://npm.io/package/vue-tippy

## Dependencies (1)

- [tippy.js](https://npm.io/package/tippy.js.md) ^6.3.7

## Recent versions

- 6.8.0 (latest) — 2026-09-15
- 6.3.0-beta.2 (beta) — 2023-07-18
- 4.16.1 (v4) — 2023-03-09
- 6.0.0-alpha.65 (next) — 2022-09-30
- 6.7.1 — 2025-05-22
- 6.7.0 — 2025-03-19
- 6.6.0 — 2024-12-23
- 6.5.0 — 2024-10-15
- 6.4.4 — 2024-06-28
- 6.4.3 — 2024-06-26
- 6.4.2 — 2024-06-26
- 6.4.1 — 2023-12-26
- 6.4.0 — 2023-12-25
- 6.3.1 — 2023-08-09
- 6.3.0 — 2023-08-06
- … 163 more at https://npm.io/package/vue-tippy/versions

## README

# VueTippy - V6

[![npm](https://img.shields.io/npm/v/vue-tippy/latest.svg)](https://www.npmjs.com/package/vue-tippy) [![vue2](https://img.shields.io/badge/vue-3.x-brightgreen.svg)](https://vuejs.org/) [![download](https://img.shields.io/npm/dt/vue-tippy.svg)](https://www.npmjs.com/package/vue-tippy)

> Vue.js 3 wrapper for Tippy.js

<aside class="notice">
<a href="https://github.com/KABBOUCHI/vue-tippy/tree/v4">For Tippy.js v4 use v4 branch</a>
</aside>


## Documentation

For full v6 documentation, visit [https://vue-tippy.netlify.app/](https://vue-tippy.netlify.app/).

## Installation

```js
npm install vue-tippy@v6

//or

yarn add vue-tippy@v6
```

## Configuration (optional)

```js
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')
```

## Usage

### Vue Directive

```html
<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>
```

### Vue Component

```html
<template>
  <Tippy content="Hi!">
    <button>Tippy!</button>
  </Tippy>
</template>

<script setup>
import { Tippy } from 'vue-tippy'
</script>
```

### Using composition api

```js
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!')
  },
})
```

---
_Source: https://npm.io/package/vue-tippy · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
