Best usage senarios of method bubling

Apart from Higherachy error handling, are there any pointers for real scenarios of making use of bubling special in enterprise grade applications.

Any practical case studies sharing would help a lot.

Route action bubbling is more about the {{outlet}} case. As you may know, outlets and routes are connected. Nested routes means nested outlets. When you think about this way, you realize that sometimes components in the inner most outlet needs to send information up the chain. In most cases, these actions are targeted and only meant for one route layer. But there are cases where in between layers may want to intercept the action and either “extend” it by allow bubbling or disabling it by not bubbling.

1 Like