vue点击点击添加单选数据

<input type="text" v-model="id">
<input type="text" v-model="name">
<button @click="add"></button>
<ul>
<li v-for="item in list">
{{item.name}}
<input type="checkbox"/>

</li>

</ul>

add(){
this.list.push({id:this.id,name:this.name})
}

猜你喜欢

转载自www.cnblogs.com/xzhce/p/12891834.html