3👍
✅
You can use computed property to return desire object from selected value
computed: {
selectedState() {
return this.states.find( i => i.value == this.selected );
}
}
Here is Codepen sample
Source:stackexchange.com