Basic, performant Vue tooltip directive.
npm install vue-base-tooltipshell
npm i -S vue-base-tooltip
`$3
`shell
yarn add vue-base-tooltip
`$3
Vue BaseTooltip can be loaded via CDN using ESM or UMD format.#### ESM
`js
import VueBaseTooltip from 'https://unpkg.com/vue-base-tooltip/dist/vue-base-tooltip.es.js'
`#### UMD
`html
`#### Default CSS
`html
`Simple Usage
Import the plugin to your app and install it.
`js
// main.ts/js
import VueBaseTooltip from 'vue-base-tooltip'app.use(VueBaseTooltip)
`Add the default styling, this is optional in case you want to style your tooltip from scratch, as described in the styling section of the docs.
`js
// main.ts/js
import VueBaseTooltip from 'vue-base-tooltip'
import 'vue-base-tooltip/style.css'app.use(VueBaseTooltip)
`
Use the v-tooltip directive to add a tooltip to an element.
`html
``