Open KennethMurugu opened 5 years ago
Looks like the Datepicker component does not emit the @opened event as expected. I can see from the src/components/Datepicker.vue
component that the close
method has the following code:
this.$emit('closed')
However, there is no opened
equivalent as per the documentation. The showCalendar
event is triggered by the Dateinput.vue
component and handled by the Datepicker.vue
component which should in turn trigger opened
.
When clicking the input field, I can see in Vue.js dev tools that a
showCalendar
event is emitted by I am unable to catch it.The
datepickerOpened
method is never called.As a side note, I can see that the event is emitted by the
DateInput
component and not theDatePicker
component so maybe that has something to do with it...? Or my code is just bad :D I'm still kinda new to Vue.. Either way any help is appreciated. Cheers