[Vuejs]-Put prismic fields in an array to be used in v-select :items prop for vuetify project?

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> 

Leave a comment