1.0.3 • Published 3 years ago

vue1-b-tooltip v1.0.3

Weekly downloads
6
License
MIT
Repository
github
Last release
3 years ago

vue1-b-tooltip

Bootstrap tooltip for vue1 directive

Demo

Demo page

Installation

npm

npm i vue1-b-tooltip --save

yarn

yarn add vue1-b-tooltip

Getting Started

import Vue from 'vue';
import Vue1BTooltip from 'vue1-b-tooltip';

Vue.use(Vue1BTooltip);

or include the script directly

<script src="path/to/vue.js"></script>
<script src="path/to/vue1-b-tooltip.js"></script>
<script>
  Vue.use(Vue1BTooltip); // good to go.
</script>

Basic Example

<span v-b-tooltip.hover title="Tooltip content">Hover Me</span>

Documentation

Read BootstrapVue documentation.