vue中组件间的通信
Posted zhaodz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中组件间的通信相关的知识,希望对你有一定的参考价值。
1.props:父组件的数据传递给子组件(数据在子组件中)
(1)在子组件中申明props,props的类型一般为数组类型
window.HomeList ={ template, props:[‘empList‘] }
(2)在父组件中,给子组件所在的标签绑定属性
<home-list :empList="empList"></home-list>
父组件的数据如下:
data(){ return { hobbies:[‘吃饭‘,‘睡觉‘,‘打豆豆‘,‘看书‘], empList:[ {id:1,name:‘小梦‘,salary:8000}, {id:2,name:‘小话‘,salary:2000}, {id:3,name:‘小栈‘,salary:8000}, {id:4,name:‘小琴‘,salary:7000}, {id:5,name:‘小爱‘,salary:6000}, ] }
完成后子组件可以使用props中的数据。
<tr v-for="item in empList" :key="item.id"> <td>{{item.id}}</td> <td>{{item.name}}</td> <td>{{item.salary}}</td> </tr>
2.props 传递函数
(1)所传递的函数写在父组件中,并在给子组件所在的标签绑定属性
methods: { del(index){ this.empList.splice(index,1) } }
<home-list :del="del"></home-list>
(2)在子组件中申明props,接收父组件传递过来的函数名
(3)在子组件中的methods中写上方法,在方法的函数体内调用props中的函数
window.HomeList ={
template,
props:[‘del‘],
methods: {
deleteItem(){
this.del()
}
},
}
(4)在子组件中,添加触发事件
<td><a href="#" @click.prevent="del(index)">删除</a></td>
以上是关于vue中组件间的通信的主要内容,如果未能解决你的问题,请参考以下文章