You can try this
<v-time-picker
v-model="time"
:allowed-minutes="allowedStep"
format="24hr"
scrollable
min="9:30"
max="22:15"
></v-time-picker>
And you can add the allowedStep method as follows:
methods: {
allowedStep: m => m % 15 === 0,
},
CLICK HERE to find out more related problems solutions.