相关版实例代码如下:
<Meta charset="UTF-8">
vue实例:添加删除元素r
name:
age:
sex:
</div>
<div class="form-group">
<label></label>
<button v-on:click = 'addPerson'>Create</button>
</div>
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Sex</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<tr v-for="item in items"><!--v-for-->
<td>{{item.name}}</td>
<td>{{item.age}}</td>
<td>{{item.sex}}</td>
<td><button @click="deletePerson($index)">Delete</button></td>
</tr>
</tbody>
</table>