[Vuejs]-Updating options on dynamic selector with Vuejs2

0👍

I should suggest you keep an array of usable options, and each time a value is selected, you splice the value from the usable options. When you v-for to create the list of options, you’ll show only the ones that weren’t selected yet.

Leave a comment