This post shows working code fragments that upload files from a web browser.
Angular Multiple Components With One EventEmitter
This post how to send messages from multiple Angular components using the same EventEmitter. We have three parts – AppComponents, AnotherComponent, and YetAnotherComponent. The setup is usually hierarchical, where we embed the selectors of AnotherComponent and YetAnotherComponent in AppComponent’s HTML.
Angular – Pass Data from One Component to Another
This post shows how to pass data from one component to another in Angular using @Input. Also, we embed a component’s selector in another component’s HTML. Therefore, in that sense, we are passing data from a parent to a child
Angular EventEmitter Child to Parent Component
This post shows how to pass data from the child component to the parent component using Angular EventEmitter. We have migrated the codes from Angular 7.20 to 15.0.0. Angular Requirements We used the following items for this post. Angular CLI
Angular – Bootstrap Another Module other than AppModule
This post demonstrates how to change a newly created Angular project to use another @NgModule other that the default AppModule class.