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
Source:stackexchange.com
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