[Vuejs]-Responsive select menu does not display array values

0👍

Your <select> tag has no binding. Usually you should have a v-bind or at least a change handler to update the data.

Your change handler could look like this:

<select
  @change="changeTab($event.target.value)"
>
...
</select>

Leave a comment