vue中组件之间的通信

1. 父组件访问子组件      (父组件修改子组件)
        a. props  必须动态props 父组件修改自身的变量  把变化的值传入 子组件  子组件接收动态props
        b. refs   指向这个子组件对象    
        c. 事件总线 (bus new Vue)
        d. events 事件   (emit on )
        e. vuex (最后一天)
 
2. 子组件访问父组件
        a.  自定义事件   emit  子组件发送事件    on 父组件监听事件 修改内部变量  
        b.  $parent     父实例,如果当前实例有的话  父组件  
        c.  反向props   父组件 把修改自身变量的方法函数通过props 传递给子组件 子组件执行这个props函数  实现子改父
        d.  事件中央总线  
        e.  vuex  
 
3. 兄弟组件之间的通信
        a. 事件center总线 (bus new Vue)  新建空的Vue  $emit $on  $once
        b. 中间人模式  (子改父  父改子 )   把父亲当做中间人   6种
        c. vuex  
 

 

posted @ 2022-02-23 12:07  4zero4NotFound  阅读(28)  评论(0编辑  收藏  举报