vuematerial / vue-material

Vue.js Framework - ready-to-use Vue components with Material Design, free forever.
https://www.creative-tim.com/vuematerial
MIT License
9.88k stars 1.16k forks source link

Missing events on a datepicker input #2340

Closed larini closed 2 years ago

larini commented 2 years ago

It is not possible to use events in the datepicker input, like @focus or @blur

Example:

` <md-datepicker v-model="selectedDate" :md-open-on-focus="false" @focus="log('date-birth')" >

`

sonalikatara commented 2 years ago

try @focusout.native and @focusin.native

Example :

<md-datepicker v-model="selectedDate" :md-open-on-focus="false" @focusin.native="log('date-birth')" > <label>Date birth</label> </md-datepicker>

marqbeniamin commented 2 years ago

@sonalikatara thank you for your help 🔥