vue中获得select中选中的值

template:

<select v-model="selected" >
 <option v-for="option in options" v-bind:value="option.value">
   {{ option.text }}
 </option>
</select>
<span>Selected: {{ selected }}</span>

script:

 data: {
   selected: 'A',//select选中的值
   options: [
     { text: 'One', value: 'A' },
     { text: 'Two', value: 'B' },
     { text: 'Three', value: 'C' }
   ]
 }

选择就可以考到获取成功

    原文作者:KASON
    原文地址: https://segmentfault.com/a/1190000019873395
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞