非父子组件间传值
当组件的嵌套多时,非父子组件间传值就显得复杂,除了使用vuex实现之外,还可以通过Bus(或者叫 总线/发布订阅模式/观察者模式)的方式实现非父子组件间传值。
<!-- more -->
<div id="root">
<child1 content="组件1:点我传出值"></child1>
<child2 content="组件2"></child2>
</div>
<div id="root">
<child1 content="组件1:点我传出值"></child1>
<child2 content="组件2"></child2>
</div>
<script type="text/javascript">
Vue.prototype.bus = new Vue()
// 每个Vue原型上都会有bus属性,而且指向同一个Vue实例
Vue.component('child1', {
props: {
content: String
},
template: '<button @click="handleClick">{{content}}</button>',
methods: {
handleClick(){
this.bus.$emit('change', '我是组件1过来的~') // 触发change事件,传出值
}
}
})
Vue.component('child2', {
data() {
return {
childVal: ''
}
},
props: {
content: String,
},
template: '<button>{{content}} + {{childVal}}</button>',
mounted() {
this.bus.$on('change', (msg) => { // 绑定change事件,执行函数接收值
this.childVal = msg
})
}
})
var vm = new Vue({
el: '#root'
})
</script>
上面代码中,在Vue原型上绑定一个bus
属性,指向一个Vue实例,之后每个Vue实例都会有一个bus
属性。
此方法传值,不限于兄弟组件之间,其他关系组件间都适用。
<p class="codepen" data-height="400" data-theme-id="light" data-default-tab="js,result" data-user="xugaoyi" data-slug-hash="wvaGwEj" style="height: 400px; box-sizing: border-box; display: flex; align-items: center; justify-content: center; border: 2px solid; margin: 1em 0; padding: 1em;" data-pen-title="非父子组件间传值2(Bus /总线/发布订阅模式/观察者模式)">
<span>See the Pen <a href="https://codepen.io/xugaoyi/pen/wvaGwEj">
非父子组件间传值2(Bus /总线/发布订阅模式/观察者模式)</a> by xugaoyi (<a href="https://codepen.io/xugaoyi">@xugaoyi</a>)
on <a href="https://codepen.io">CodePen</a>.</span>
</p>
<script async src="https://static.codepen.io/assets/embed/ei.js"></script>
父组件调用子组件方法并传入值
通过ref
引用调用子组件内的方法并传入参数
父组件:
<子组件标签 ref="refName"></子组件标签>
methods: {
fnX(x) {
this.$refs.refName.fnY(x) // 调用子组件方法并传入值
}
}
子组件:
methods: {
fnY(x) {
this.x = x
}
}
}