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.
Source:stackexchange.com