vue-tailwind-datepicker
vue-tailwind-datepicker copied to clipboard
How to get the change event in the input box?
hello, After selecting the time, the time in the input box changes, where is the change event?
~~+1. The input element doesn't emit any change event~~
The component uses fallthrough attributes, just bind @input
onto the component and it will trigger.
``
The component uses fallthrough attributes, just bind
@input
onto the component and it will trigger.
Doesn't work for me :( Tried it in my project and on the playground, the event is not triggered
U can use @update:model-value="handleDate" I'm on Nuxt 3 ` <VueDatePicker :model-value="date" @update:model-value="handleDate" />
`get here https://vue3datepicker.com/methods-and-events/events/