First of all, thanx for this great tool!
But...
How can I do map to inner v-model property when isMulti?
With option I can do so (:get-option-label/:get-option-value). But I need v-model.
For example, here the data I receive from server:
let items = [
{
id: 1,
code: 'blabla',
text: 'bla',
},
...
]
I want something like this:
<vue-select
:is-multi="true" v-model="items" :get-model-value="item => item.id"
>
Thank you.