QPopover as Dropdown Menus (on hover)
-
Is it possible to do this with popovers?
I tried @mouseover=“openPop()” @mouseout=“closePop()” to the parent button but apparently it is being injected as a direct child of <body> so it doesn’t close. Any alternatives are also appreciated. Thanks -
For the record the solution is to use the
.native
modifier.@mouseover.native="toggleSettingsPopover()"