I want to get an "input" event from a nested component that I see firing from the Vue chrome devtools extension
I can only listen to the "input" event on the VDatePicker using the v-on directive. Is there a way to listen to the VDatePickerDateTable "input" event without extending the VDatePicker component?
<template>
<v-date-picker v-model="selectedDays" multiple @input="onDayClick"/>
</template>
<script>
export default {
methods:{
onDateClick(data){
console.log(data); // ["2019-01-01", "2019-01-02", "2019-01-06"]
}
}
}
</script>