Tooltip component is based on hint.css for Vue Bulma.
$ npm install vue-bulma-tooltip --save
<template>
  <tooltip label="This is title" placement="top-right">
    <button class="button is-primary has-text-centered">
      <span>top-right</span>
    </button>
  </tooltip>
</template>
<script>
import Tooltip from 'vue-bulma-tooltip'
export default {
  components: {
    Tooltip
  }
}
</script>