Как выбрать опцию в Vue

#javascript #vue.js Вопрос: <template> <select class="form-control mt-1" @change="selectUser"> <option >select user</option> <option v-for="(user, index) in users" :key="index" {{user.first_name}}</option> </select> </template> <script> selectUser(event){ if(event.target.selectedIndex != 0){ this.index = event.target.selectedIndex-1 this.selectedUsers.push(this.users[this.index]) this.users.splice(this.index,…

Продолжить чтениеКак выбрать опцию в Vue