[Vuejs]-Vue.js dropdown issue in IE

0πŸ‘

βœ…

I finally figured out the solution. I needed to add v-bind:value=”option” to the option tag in the html. Updated html below.

<select class="form-control" v-model="answerLocal" @change="updatedAnswer()">
       <option v-for="option in possibleanswers" v-bind:value="option">
             {{option}}
       </option>
</select>

Leave a comment