[Vuejs]-Vue.js select placeholder disappears on input click

4👍

For your default options to show, they should have the same value as the initial value of the property in data. They should also be declared disabled just in case.

So all you need to do is replace the two option tags with this:

<option disabled value="">Select State</option>

<option disabled value="">Select Age</option>

Leave a comment