I am trying to figure out, whether what is called Change Detection in AngularJS 2, actually corresponds to picking up events from the Capturing Phase and Bubbling Phase in ReactJS. Is that so? Could anybody provide an AngularJS 2 example?
ReactJS example:
<button type ="button"
onClickCapture={this.onButtonCapture}
onClick={this.onButtonBubble}>
Capturing vs Bubbling
</button>