@dobbel
Thanks for the reply, but this was not the question. Sorry, I did not copy the full code, because it’s not relevant to the question.
this is the full data function if you are interested:
data() {
return {
id: null,
apiUrl: '/user/update',
errors: null,
data: {},
form: {
email: '',
phone: '',
status: ''
},
inputError: {
email: '',
phone: '',
status: ''
},
statusOptions: []
}
},
This part is works. the question is about the select input.
I get the select input options from server:
And I get the exists user data:

You can see the status is 1. So when I want to set the user status to the select input I see 1 not “Active” but when I change status the label is ok.

I hope you understand my problem.