用vuejs怎么给select加checked
1 回答
ITMISS
TA贡献1871条经验 获得超8个赞
你是想说selected吧。
1 2 3 4 5 6 7 8 9 10 11 12 13 | <select v-model="select"> <options value="1">1</options> <options value="2">2</options> <options value="3">默认选中这个</options> </select>
<script> new Vue({ data:{ select:3 } }) </script> |
添加回答
举报
0/150
提交
取消