vue-tailwind-datepicker icon indicating copy to clipboard operation
vue-tailwind-datepicker copied to clipboard

How to get the change event in the input box?

Open goophps opened this issue 1 year ago • 3 comments

hello, After selecting the time, the time in the input box changes, where is the change event?

goophps avatar Aug 15 '23 18:08 goophps

~~+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.

kylekz avatar Sep 21 '23 09:09 kylekz

``

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

Nicky-DT avatar Oct 11 '23 08:10 Nicky-DT

U can use @update:model-value="handleDate" I'm on Nuxt 3 `

`

get here https://vue3datepicker.com/methods-and-events/events/

Timures avatar Jan 30 '24 14:01 Timures