-
Notifications
You must be signed in to change notification settings - Fork 864
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Event listeners do not work #26
Comments
v0.4.2 is released. Let me know if you have any issues with the fixes. |
I'm experiencing this issue too. v0.6.3. Listening for @update:topage, which works fine, but I get the following warning each time the event emits:
It's just a warning, but it's better if it can be avoided. I've tried update:to-page but that doesn't catch the event. |
This issue has been kind of a pain to manage. The reason that both events are emitted ( I could drop emitting I think the only solution would be to rename all props to using their non-camelcase versions ( |
From doc, the Calendar component should accept @daySelect and @update:fromPage listeners
But this code does not works
The method
selectDay
is never calledIt seems that the problem is the case sensitive event name.
Using
@day-select
does not resolve. I think that the event name should be "dayselect", "update:frompage", "update:topage".The text was updated successfully, but these errors were encountered: