[Vuejs]-Why does my v-select render more than once?

1👍

Remove the v-for="item in allItems" in your <v-select>. This will render a <v-select> element for each item in allItems.

👤JKL

Leave a comment