vue 2.0 组件传值(2)

描述

1.调用子组件的时候定义一个ref

        

2.在父组件里面通过

this.$refs.header.属性
this.$refs.header.方法

子组件主动获取父组件的数据和方法:

this.$parent.数据
this.$parent.方法

父组件





子组件Header



你可能感兴趣的:(前端)