[Vuejs]-Vue js multiselect edit form not showing data

0👍

You need to set the :value attribute in order to set the default selected values not the v-model.

The v-model for vue-multiselect is basically a copy it handles internally. Should not be used to set an option manually. Use :value for that.

Leave a comment