angular reload child component code example
Example 1: reload a child component in angular
import { Component, Input, OnChanges } from "@angular/core";
@Component({
selector: "child-component",
templateUrl: "./child-component.html"
})
export class MyComponent implements OnChanges {
@Input() someInput: string;
constructor() {}
ngOnChanges() {
console.log(this.someInput);
}
}
Example 2: reload sub component angular
this.router.navigateByUrl('/RefreshComponent', { skipLocationChange: true }).then(() => {
this.router.navigate(['Your actualComponent']);
});
Example 3: reload a child component in angular
<child-component [someInput]="inputValue"></child-component>