Skip to content

Tooltips and Popovers

Vlad Shusterman edited this page Apr 28, 2018 · 28 revisions

We are using v-tooltip.

<v-popover>
  <!-- This will be the popover target (for the events and position) -->
  <button>Click me</button>
  <!-- This will be the content of the popover -->
  <MyAwesomeComponent slot="popover"/>
</v-popover>

Props

  • open - Boolean, false
  • disabled - Boolean, false
  • placement - String, 'auto' - place, where tooltip text is situated.
  • popoverClass - String | Array, 'vuestic-tooltip'
  • autoHide - Boolean, false

Find more information see v-tooltip docs!

Clone this wiki locally