You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if v-model is a and with number, it always gets string when select changes:
<div id="demo">
<select v-model="sel" number>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</div>
Please see the example:
http://jsfiddle.net/djyunb61/