码迷,mamicode.com
首页 > 其他好文 > 详细

vue中下拉选择绑定变换选项change事件

时间:2019-12-02 17:27:39      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:v-model   color   没有   选择   click   nbsp   for   style   绑定   

本来是想在点击选项时获取选项的值,给option加的click事件,但是并没有生效

后面查了一下是因为:select 中的option 识别不了onclick,,需要在select上做onchange进行识别。。

 

<select  @change="selectNode(selected)" v-model="selected">
    <option  v-for="(item,index) in userList" :value="item.name" :key="index">{{item.name}}</option>
</select>

selectNode(node){
  this.selected = node;
},

 

vue中下拉选择绑定变换选项change事件

标签:v-model   color   没有   选择   click   nbsp   for   style   绑定   

原文地址:https://www.cnblogs.com/150536FBB/p/11971414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!