[Vuejs]-Vue – how to loop through values in array

0👍

Since you have an associative array as items you will need to do something like this

<v-select :options="myArr" :reduce="item => item.key" label="item.str" />

You can read more about it here

Leave a comment