axios response data to pre-select on multiselect
问题 Im using the popular plugin for multiselect shentao/vue-multiselect <multiselect v-model="test.selectedTags" :options="options" :multiple="true" :clear-on-select="false" :hide-selected="true" :preserve-search="true" placeholder="Pick some" label="name" track-by="name" :preselect-first="true"> </multiselect> On my code im using axios request to fetch user id and name to be pre-selected by the multi-select editUrl: function(id){ let vm = this; axios.get('api/urls/' + id) .then( response => { vm