2.1.4
https://jsfiddle.net/aleksey_beskosty/zz5svy6q/
Select element is declared as:
<select :value="val">...</select>
When val is changed, select element updates its value and shows it.
val is changed but select doesn't update value property.
duplicate of #4369 (fixed in 1cf377f)
I'm still having this problem on first load. I basically made a wrapper component for a select that uses :value and @input instead of v-model. On first load of the wrapper component, it's random chance as to whether the correct value will be displayed in the select, or whether it is empty. I know the value is there because it displays when I put {{value}} in the same wrapper component right next to the
Most helpful comment
I'm still having this problem on first load. I basically made a wrapper component for a select that uses :value and @input instead of v-model. On first load of the wrapper component, it's random chance as to whether the correct value will be displayed in the select, or whether it is empty. I know the value is there because it displays when I put {{value}} in the same wrapper component right next to the