任何人都知道如何provide
引用子组件。例如:Parent
组件提供参考:
<template>
<div ref="myRef" />
</template>
<script>
export default {
name: 'SearchContainer',
provide: {
parentRef: this.$refs.myRef
}
}
</script>
</style>
和Child
组件注入它:
<template>
<div />
</template>
<script>
export default {
name: 'SearchContainer',
inject: ['parentRef']
}
</script>
</style>
2条答案
按热度按时间6kkfgxo01#
通常,父组件和子组件之间的交互应该使用道具和发出的事件来完成:
父母:
xmq68pz92#
我已经设法做到了为孩子们提供参考。但在我看来,如果你想在父母和孩子之间进行交流,我想你已经得到了布萨杰拉·布拉希姆的答案。
仍然提供参考有它自己的用例。我用它来对话。
下面是我的解决方案: