This may be trivial but I could not make a select box in Vue.js template to show US as default (that is before the drop down being clicked)
<select v-model="country">
<option selected="selected">US</option>
<option>UK</option>
<option>EU</option>
</select>
The problem is that selector appears blank before being clicked whatever I try.
How can I fix it?
vue.jstemplate not ordinary html.