If we bind a Select box values like the following Example:
<select v-model="car">
<option number="one">BMW</option>
<option number="two">Audi</option>
<option number="three">Mercedes</option>
</select>
How can I get the value of the number attribute instead of the Name of the car in Vue.js?