[Vuejs]-Icon position switching left right automatically on removing position:absolute

0👍

Probably nothing wrong, Vue likely just has a CSS rule for on hover. Try adding your own to override it:

v-tooltip:hover {
  position: relative;
}

Leave a comment