VUE中关于select标签选中option选项

在select中先绑定change事件


在方法中根据select的id来体现所选中的选项

methods: {
    changeType: function(){
        this.loginType = sel.options[sel.selectedIndex].value;
    }
}
要注意的是:在方法中可以直接用select中绑定的id来操作

你可能感兴趣的:(VUE中关于select标签选中option选项)