在select中先绑定change事件
<select name="type" id="sel" @change="changeType">
<option value="username">username</option>
<option value="email">email</option>
</select>
在方法中根据select的id来体现所选中的选项
methods: {
changeType: function(){
this.loginType = sel.options[sel.selectedIndex].value;
}
}
要注意的是:在方法中可以直接用
select
中绑定的id
来操作