v-tooltip

How to close outer v-tooltip on inner v-tooltip hover

非 Y 不嫁゛ 提交于 2021-02-11 06:46:14
问题 I have two tooltips, one is on an outer element, the other on the inner element like this: How do I remove the outer tooltip when the inner tooltip is showing? Here's a Fiddle The code is pretty standard, but keep in mind, sometimes v-tooltip places tooltips like a modal - on the body level, so the tooltips might not actually be nested. <div id="app"> <div v-tooltip="'Outer Tooltip'"> Outer Area <div v-tooltip="'Inner Tooltip'"> okokok </div> </div> </div> Here's what I've tried: On the Outer