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
Source:stackexchange.com
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