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>
Source:stackexchange.com