Skip to content

iml885203/vue1-b-tooltip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.