I am trying to create selected dropdown with vue JS The code following :
<select v-model="selected"> IDR
   <option value="IDR"><strong>Mata Uang</strong> </option>
   <option>Rp Indonesia Rupiah</option>
   <option>US$ U.S.Dolar</option>
</select>
So the question is how do i give name select tag? i try to add "IDR" but still can't show the "IDR" text How to solve this or any suggestion about this?