Vue: Advance parent child communication
Draft Disclaimer: Please note that this article is currently in draft form and may undergo revisions before final publication. The content, including information, opinions, and recommendations, is subject to change and may not represent the final version. We appreciate your understanding and patience as we work to refine and improve the quality of this article. Your feedback is valuable in shaping the final release.
Language Mismatch Disclaimer: Please be aware that the language of this article may not match the language settings of your browser or device.
Do you want to read articles in English instead ?
Vue: Advance parent child communication
Sometimes I am doing so complicate / advanced programming stuffs that I want to share but then I realize that I might not have the right audience for it. That's so sad. I guess I'll just blog about it
FYI it is about @vuejs
Before I actually describe it, let me start by reminding you message exchange between parent and child components:
- parent to child: props
- child to parent: event
What if you need the child component to be notified when the parent is doing a particular event. We can sure try to set a prop
and pass it down through the components tree. There is a better solution involving provide/inject
.
But that's still do not solve my problem. Let me explain the situation:
- I have a layout (root component) that have a return button
- There is
details page
that should redirect to thelist page
- The
layout component
does not know about thedetails page
Let me know how you guys would solve this ? cc @youyuxi
the layout is in charge of the return button but we needed the financial page to handle the return button that's the problem