1.1props
方式:能够是数组或对象,用于接收父组件的数据javascript
<div id="app"> <child-component :msg="message" :count="count"></child-component> <button @click="count++"> 点击+1 </button> </div> <script> const childComponent = { props: { msg: String count: Number }, template: `<div><p>{{msg}}</p><p>{{count}}</p><div>` } new Vue({ el: '#app', data: { message:'父组件的值', count:0 }, components:{ childComponent } }) </script>
1.2 经过$parent
获取父组件实例的方法或者属性html
这种方式,从严格意义上讲不是值的传递,而是一种 “取” (不推荐直接经过实例进行值的获取)vue
实例属性
$parent
能够得到父组件的实例,借助实例能够调用父实例中的方法,或者父实例上的属性java
<div id="app"> <child-component :msg="message" :count="count"></child-component> <button @click="count++"> 点击+1 </button> </div> <script> //子组件 const childComponent = { data:() => ({ msg:'', count:null }), methods: { handleClick(){ //调用父级实例的方法 this.$parent.parentMethods(); } } mounted () { // 获取父级实例中的属性 this.msg = this.$parent.message; this.count = this.$parent.count; } template: `<div><p @click="handleClick">{{msg}}</p><p>{{count}}</p><div>` } // 父级 new Vue({ el: '#app', data: { message: '父组件的值', count: 0 }, methods: { parentMethod () { console.log('我是父级的方法'); } } components: { childComponent } }) </script>
1.3 使用修饰符.sync
数组
修饰符.sync
是2.3.0+
新增,它对props
起到了一种修饰的做用,使用.sync
进行修饰的props
,意味着子组件有修改它的意图,这种状况下它只起到一个标注性做用,有它没它都不会影响逻辑app
使用.sync
修改上边的代码:ide
// 父组件 List.vue
<template> <!-- 这里不写 .sync 也不会影响结果 --> <List-item :title.sync="title" @update:title="updataTitle"></List-item> </template> <script> import ListItem from "./ListItem"; export default { data() { return { title: "我是title", } }, components: { ListItem }, methods: { updataTitle(res) { this.title = res; } } } </script> // 子组件 ListItem.vue <template> <div> <button @click="handleClick">Click me</button> <div>{{title}}</div> </div> </template> <script> export default { props: { title: String, }, methods: { handleClick() { // 子组件向父组件传值 this.$emit('update:title', '我要父组件更新 title'); } } } </script>
使用.sync
向子组件传递多个props
:工具
当咱们用一个对象同时设置多个prop
的时候,也能够将这个.sync
修饰符和v-bind
配合使用:this
<text-document v-bind.sync="doc"></text-document>
这样会把doc
对象中的每个属性(如:title)都做为一个独立的prop
传进去,而后各自添加用于更新的v-on
监听器。spa
2.1 经过事件传值$emit
使用:
子组件使用
$emit
发送一个自定义事件父组件使用指令
v-on
监听子组件发送的事件
<div id="app"> <child-component @child-event="childEvent"></child-component> </div> <script> //子组件 const childComponent={ data:()=>({ msg:'点击发送值到父组件', count:null }), methods:{ handleClick(data){ this.$emit('child-event','我是子组件传过来的值'); } } template:`<div><p @click="handleClick">{{msg}}</p><p>{{count}}</p><div>` } // 父级 new Vue({ el:'#app', data:{ message:'父组件的值', count:0 }, methods:{ childEvent(data){ console.log("子组件传过来的值",data); } } components:{ childComponent } }) </script>
2.2 经过$children
获取子组件实例
同$parent
2.3 经过ref
注册子组件引用
虽然存在prop
和事件,可是有时仍可能须要在 JavaScript 里直接访问一个子组件。为了实现这样的需求,能够使用ref
特性为某个子组件设置一个 ID 引用,就是一个身份标识
<div id="app"> <child-component ref="childComponent"></child-component> <button @click="getRefs"> 获取子组件实例 </button> </div> <script> //子组件 const childComponent={ data:()=>({ msg:'点击发送值到父组件', count:null }), template:`<div><p @click="handleClick">{{msg}}</p><p>{{count}}</p><div>` } // 父级 new Vue({ el:'#app', data:{ message:'父组件的值', count:0 }, methods:{ getRefs(){ console.log("子组件传过来的值",this.$refs.childComponent.msg); } } components:{ childComponent } }) </script>
3.1Bus
中央事件总线
非父子组件传值,能够使用一个空的Vue
实例做为中央事件总线,结合实例方法$on
,$emit
使用
注意:
注册的
Bus
要在组件销毁时卸载,不然会屡次挂载,形成触发一次但多个响应的状况。
beforeDestroy(){ this.$Bus.$off('方法名',value); }
Bus
定义方式:
1,将Bus
抽离出来,组件有须要时引入
// bus.js import Vue from 'vue'; const Bus = new Vue(); export default Bus;
2,将Bus
挂载到 Vue 根实例的原型上
import Vue from 'vue'; Vue.prototype.$bus = new Vue();
3,将Bus
注入到 Vue 根对象上
import Vue form 'vue'; const Bus = new Vue(); new Vue({ el:'#app', data:{ Bus } })
使用例子:
<div id="app"> <child-component ></child-component> <child-component-two ></child-component-two> </div> <script> Vue.prototype.$bus = new Vue(); //子组件1 const childComponent={ data:()=>({ msg:'我是子组件一', sendMsg:'我是子组件一发送的值' }), methods:{ handleClick(){ this.$Bus.$emit('sendMsg',this.sendMsg); } } template:`<div><p @click="handleClick">{{msg}}</p></p><div>` } //子组件2 const childComponentTwo={ data:()=>({ msg:'我是子组件二', brotherMsg:'' }), mounted(){ this.$Bus.$on('sendMsg',data=>{ this.brotherMsg = data; }) }, beforeDestroy(){ this.$Bus.$off('sendMsg'); } template:`<div><p @click="handleClick">{{msg}}</p><p>{{brotherMsg}}</p><div>` } // 父级 new Vue({ el:'#app', data:{}, components:{ childComponent, childComponentTwo } }) </script>
4.1$attrs
和$listeners
若是父组件 A 下面有子组件 B,组件 B 下面有组件 C,这时若是组件 A 直接想传递数据给 组件 C,那就行不通了!因此,这时能够使用$attrs
和$listeners
Vue 2.4 提供了$attrs
和$listeners
来实现可以直接让 组件 A 传递消息给 组件 C
// 组件A Vue.component('A', { template: ` <div> <p>this is parent component!</p> <B :messagec="messagec" :message="message" v-on:getCData="getCData" v-on:getChildData="getChildData(message)"></B> </div> `, data() { return { message: 'hello', messagec: 'hello c' //传递给c组件的数据 } }, methods: { // 执行B子组件触发的事件 getChildData(val) { console.log(`这是来自B组件的数据:${val}`); }, // 执行C子组件触发的事件 getCData(val) { console.log(`这是来自C组件的数据:${val}`); } } }); // 组件B Vue.component('B', { template: ` <div> <input type="text" v-model="mymessage" @input="passData(mymessage)"> <!-- C组件中能直接触发 getCData 的缘由在于:B组件调用 C组件时,使用 v-on 绑定了 $listeners 属性 --> <!-- 经过v-bind 绑定 $attrs 属性,C组件能够直接获取到 A组件中传递下来的 props(除了 B组件中 props声明的) --> <C v-bind="$attrs" v-on="$listeners"></C> </div> `, /** * 获得父组件传递过来的数据 * 这里的定义最好是写成数据校验的形式,省得获得的数据是咱们意料以外的 * * props: { * message: { * type: String, * default: '' * } * } * */ props: ['message'], data () { return { mymessage: this.message } }, methods: { passData(val){ //触发父组件中的事件 this.$emit('getChildData', val) } } }); // 组件C Vue.component('C', { template: ` <div> <input type="text" v-model="$attrs.messagec" @input="passCData($attrs.messagec)"> </div> `, methods: { passCData(val) { // 触发父组件A中的事件 this.$emit('getCData',val) } } }); var app = new Vue({ el:'#app', template: ` <div> <A /> </div> ` });
4.2provide
和inject
熟悉 React 开发的同窗对 Context API 确定不会陌生吧!在 Vue 中也提供了相似的 API 用于组件之间的通讯。在父组件中经过provide
来提供属性,而后在子组件中经过inject
来注入变量。不论子组件有多深,只要调用了inject
,那么就能够注入在provide
中提供的数据,而不是局限于只能从当前父组件的prop
属性来获取数据,只要在父组件的生命周期内,子组件均可以调用。这和 React 中的 Context API 有没有很类似!
// 定义 parent 组件 Vue.component('parent', { template: ` <div> <p>this is parent component!</p> <child></child> </div> `, provide: { for:'test' }, data() { return { message: 'hello' } } }); // 定义 child 组件 Vue.component('child', { template: ` <div> <input type="tet" v-model="mymessage"> </div> `, inject: ['for'], // 获得父组件传递过来的数据 data(){ return { mymessage: this.for } }, }); const app = new Vue({ el: '#app', template: ` <div> <parent /> </div> ` });
上面的实例中,定义了组件parent
和组件child
,组件parent
和 组件child
是父子关系。
parent
组件中,经过provide
属性,以对象的形式向子孙组件暴露了一些属性child
组件中,经过inject
属性注入了parent
组件提供的数据,实际这些经过inject
注入的属性是挂载到 Vue 实例上的,因此在组件内部能够经过this
来访问注意:
官网文档说起 provide 和 inject 主要为高阶插件 / 组件库提供用例,并不推荐直接用于应用程序代码中。
4.3 Vuex 状态管理
Vuex 是状态管理工具,实现了项目状态的集中式管理。工具的实现借鉴了 Flux、Redux 和 The Elm Architecture 的模式和概念。固然与其余模式不一样的是,Vuex 是专门为 Vue.js 设计的状态管理库,以利用 Vue.js 的细粒度数据响应机制来进行高效的状态更新。