标签: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>
标签:v-model color 没有 选择 click nbsp for style 绑定
原文地址:https://www.cnblogs.com/150536FBB/p/11971414.html