I'm trying to write a simple hover effect for a div element. I see that with Aurelia I can write something like:
<div mouseover.bind="myFunc()"></div>
Which works just fine however I need a mouseenter
event and that does not work.
<div mouseenter.bind="myFunc()"></div> // does not work
Is there any roadmap to add all javascript events? Is there a temporary solution to get similar functionality to a mouseenter
event instead of mouseover