vuematerial/vue-material

Missing events on a datepicker input

larini opened this issue · 2 comments

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')" > <label>Date birth</label> </md-datepicker>

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>

@sonalikatara thank you for your help 🔥