Vue tooltip component flickers on certain situations
Say you have some code that looks like the following snippet
<a v-tooltip title="Hello" data-container="body">
<icon />
</a>
It will produce the following behavior
But if you change the code to something like this:
<a>
<icon v-tooltip title="Hello" data-container="body" />
</a>
It will work as intended
cc @filipa
