vue-bulma/tooltip

Tooltip for images

claide opened this issue · 2 comments

Hi, thanks for this great plugin and I wonder how to use this to images like below

<tooltip label="This is title" placement="top-right">
      <img src="/images/components/photoshop.png">
</tooltip>

Thanks!

I have the same issue, i'm trying to use it in an "image grid" like so

<tooltip v-for="languageSkill in languageSkills" label="This is title" placement="top-right"> <img class="lang-img" placement="top-right" :label="languageSkill.description" :alt="languageSkill.description" :src="languageSkill.imageSrc" width="30%" height="30%" /> </tooltip>