VUE——组件通信

Vue——组件通信方式
一、ref二、`$`parent/`$`children三、props四、插槽slot五、自定义事件event六、provide/inject七、自定义dispatch和broadcast方法八、找到任意组件实例九、VUEX

组件间的通信一般有以下几种形式:
一、ref
ref: 给元素或组件注册引用信息
用ref访问组件实例:
//子组件component-a
export default{
data(){
return{
title: 'hello ref'
}
},
methods:{
sayHello(){
window.alert('world');
}
}
}

//父组件