Keep the tooltip open when mouse on the tooltip
-
Hello, I’m using tooltip https://quasar.dev/vue-components/tooltip to display text + image information.
How to prevent tooltip auto-disappear when mouse move on the tooltip? Currently, the tooltip disappears immediately when I move the mouse on it.
Thanks in advance!
-
How to prevent tooltip auto-disappear when mouse move on the tooltip?
You don’t. That isn’t what a tooltip is for. What you need is something more like QPopupProxy or QMenu. which are called via a method on an
@mouseover
event.Something like this.
https://codepen.io/smolinari/pen/qBOappw?editors=1010
Scott
-
Thank you !!!