---
title: Basic Usage
description: ''
category: Getting started
position: 4
---
### Vue Directive
```html
```
### Vue Component
```html
Hi!
```
### 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!')
},
})
```