0👍
While setting the :items prop to the question_topics array, I had to also set the item-text and item-value for the element to be ‘topic’. Doing this rendered all of the topic field values in the v-select properly.
<v-select
:items="fields.question_topics"
item-value="topic"
item-text="topic"
>
</v-select>
Source:stackexchange.com