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

2018-01-19_10.13.05

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