1.0.12 • Published 5 years ago

vue-simple-tooltip v1.0.12

Weekly downloads
96
License
GNU GPL v3.0
Repository
github
Last release
5 years ago

Vue-Simple-Tooltip

Vue.js simplified tooltip directive popover

Documentation

Basically usage, the tooltip will be positioned on top

<span v-tooltip="'This is the tooltip'">Hover me</span>

But you can also pass the position parameter top, bottom, left, right:

<span v-tooltip:bottom="'This tooltip will appear at bottom'">Hover me</span>

For passing variable, put it only in double quotes:

<span v-tooltip:bottom="myVariable">Hover me</span>

If you need to insert more complex strings or elements, you can pass html purpose with custom style:

<span v-tooltip:bottom="'<a href='https://google.com'><button style='font-size: 20px;'>Link Button</button></a>'">Hover me</span>

Example Usage

<template>
  <div id="app">
    <div v-tooltip:right="'This is a tooltip'">
    </div>
  </div>
</template>

<script>
  import tooltip from 'vue-simple-tooltip'
  export default {
    name: 'app',
    directives: {tooltip}
  }
</script>

License

The code is available under the GNU GPL v3.0 license.

1.0.12

5 years ago

1.0.10

5 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago