[Vuejs]-Vue JS How to set option as selected based on passed nested v-for value?

0๐Ÿ‘

โœ…

I think the issue is that you have set v-model="reviewSelectedLocationName" on your <select> tag, which dictates what option is selected. You could give each item in reviews a selectedLocation which is initially the same as the reviewLocation, and add v-model="review.selectedLocation" instead.

Leave a comment