码迷,mamicode.com
首页 > 其他好文 > 详细

vue中组件间的通信

时间:2019-12-02 23:23:30      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:method   turn   cli   return   类型   数组类   splice   vue   eth   

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中组件间的通信

标签:method   turn   cli   return   类型   数组类   splice   vue   eth   

原文地址:https://www.cnblogs.com/zhaodz/p/11973742.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!