[Vuejs]-Multiple vuetify birthday pickers in a v-for range loop

1👍

I have the same need/issue with this component. I’m searching for the answer as well so I can only make suggestions based on my experience with this issue.

I’ve tried your same approach here but with little success. I’m currently creating a separate BirthDatePicker component and trying to use the v-model example from this article Using v-model on Nested Vue Components to get each birth-date modeled to it’s corresponding value within my ‘people’ array of objects.

Rough example:

people: [{name: '', dob: '', etc...},{name: '', dob: '', etc...}]

Leave a comment