As a newbie to Vue.js, I'm trying to render this array:
countries: ["US", "UK", "EU" ]
Into a select menu:
<select>
<option disabled value="">Your Country</option>
<option v-for="(index, c) in countries" :key="index">{{ c }}</option>
</select>
And put UK as default selected item.
But instead of Country codes, just cuntries being shown in the menu.
How can I fix this?