Problem to solve
Currently in Vuetify 3.7.5 <v-time-picker/> does not have click events, it only has update events. When using a time picker inside a menu there is no way to hook into either AM or PM period clicks as a way of closing the menu reliably.
Possible duplicate of #7027 same ask with a different end use case in mind.
Proposed solution
This issue would be solvable with events on the Hours, Minutes, and Period by adding something like @click:period in this case or adding click emits to all three to allow further customization. In this case @click:period is the only event being requested.
Link to Vuetify Playground with code comments and example of the issue
Problem to solve
Currently in Vuetify 3.7.5
<v-time-picker/>does not have click events, it only has update events. When using a time picker inside a menu there is no way to hook into either AM or PM period clicks as a way of closing the menu reliably.Possible duplicate of #7027 same ask with a different end use case in mind.
Proposed solution
This issue would be solvable with events on the Hours, Minutes, and Period by adding something like
@click:periodin this case or adding click emits to all three to allow further customization. In this case@click:periodis the only event being requested.Link to Vuetify Playground with code comments and example of the issue