[Vuejs]-Vue Js2 cant kep old data from laravel on select option

1👍

The v-model of the select should be an array of active option values, as you fill those with the id of the skill you should make this.edit_team_skills an array of id’s.

this.edit_team_skills = response.data.teams.skills.map(skill => skill.id)

Leave a comment