Incorrect event binds #6756
MichailShcherbakov
started this conversation in
General Discussions
Replies: 2 comments 2 replies
-
in vue for performance reason, on mouseenter event is replaced with mouseover. you should try mouseover instead of mouseenter. |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Interesting things. When I try to bind event like this - that doesn't work
<button :onMouseEnter="hi">Hi!</button>
But on like this, it still works
<button :onClick="hi">Hi!</button>
or
<button :onFocus="hi">Hi!</button>
What's a problem? It is a bug?
Although I can bind like this:
<button :onmouseenter="hi">Hi!</button>
But is not the same things
Beta Was this translation helpful? Give feedback.
All reactions