You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using Vue as a library injected into another project, we are unable to catch the events due to naming. We get a "Vue Tip" warning in the console which keeps us from being able to catch the event.
[Vue tip]: Event "dateselected" is emitted in component at App.vue but the handler is registered for "dateSelected". Note that HTML attributes are case-insensitive and you cannot use v-on to listen to camelCase events when using in-DOM templates. You should probably use "date-selected" instead of "dateSelected".
Changing the event name from "dateSelected" to "date-selected" fixed the problem.
The text was updated successfully, but these errors were encountered:
When using Vue as a library injected into another project, we are unable to catch the events due to naming. We get a "Vue Tip" warning in the console which keeps us from being able to catch the event.
Changing the event name from "dateSelected" to "date-selected" fixed the problem.
The text was updated successfully, but these errors were encountered: