I would like to show a div when hovering over an element in vue.js. But I can\'t seem to get it working.
It looks like there is no event for hover or mouseover in vue.j
With mouseover only the element stays visible when mouse leaves the hovered element, so I added this:
mouseover
@mouseover="active = !active" @mouseout="active = !active"