Tooltip directive to create tooltips very easily
npm install tooltip-directiveCreate tooltips easily with just a directive.
``javascript`
import { createApp } from "vue"
import App from "./App.vue"
import directive from "tooltip-directive"
const app = createApp(App)
app.directive("tooltip", directive)
app.mount("#app")
Then, you can use the directive in any component
`HTML``
| Property | Accepted values |
| -------- | ----------------------------- |
| text | string |
| position | "up", "down", "left", "right" |
- Sebastián Castañeda -
- Sebastián Castañeda