0

after DOM item with data-toggle="tooltip" deleted within vue.js, tooltips stay hovered, like this enter image description here

<button data-toggle="tooltip" title="First Title" v-show="show" @click="show = !show">
  Button 1
</button>
 <button data-toggle="tooltip" title="Second Title" v-else @click="show = !show">
  Button 1
</button>

if I hover first button, I see tooltip "First Title" then after click I see second button and still first tooltip

how to fix it?

Mikhail_Sam
  • 10,602
  • 11
  • 66
  • 102
Pavel Prokofiev
  • 449
  • 2
  • 4
  • 14
  • If you don't get any responses, you may need to share a bit more code. – sniperd Oct 16 '17 at 18:29
  • Possible duplicate of [vuejs update parent data from child component](https://stackoverflow.com/questions/40915436/vuejs-update-parent-data-from-child-component) – aemre Oct 16 '17 at 19:46
  • `` `` if I hover first button, I see tooltip "First Title" then after click I see second button and stiil first tooltip – Pavel Prokofiev Oct 16 '17 at 21:00
  • Still having the same issue, only solution I found was to remove overflow property from parent, did you happen to find a solution at this point? – prettyInPink Feb 19 '19 at 15:53

0 Answers0