Why is the value property of the checkbox not rendered?
I want to make it so that the name property of the object being iterated is substituted into the value="" property of the checkbox. And it is not substituted. Already tried v-bind, and {{}}. He does not want to substitute everything! Render like this: <input type="checkbox" value="item.name">
Maybe because the name is Cyrillic?
<tr v-for="(item, index) in tags" :key="index"> <td class="checkbox"> <input type="checkbox" value="item.name" v-model="checkedNames"> </td> <td class="tag">{{item.name}}</td> </tr>