[Vuejs]-How to input text Value renders as html entity in Vue. some stuffs i check and not solved area

0👍

You cannot use interpolation inside html tags. Go for v-bind:value:

<input type="text" name="check" v-bind:value="item.name"></input>

Also you are opening an input, but closing with span

Leave a comment