Assume i have a component that takes three inputs input1
, input2
and input3
export class testComponent {
@Input() input1:string;
@Input() input2:string;
@Input() input3:string;
....
...
}
In the parent component I have object like
args = {
input1: "string1",
input2: "string2",
input3: "string3"
}
what is the best way to pass these key value pairs in object as arguments to the testComponent
.
All the inputs to testComponent
are not mandatory and the args
sometimes might not have all the arguments.
I don't want the testComponent
to take object itself as the input. Pls suggest some ideas. Thankyou.
You have to do it manually, it's a limitation of Angular, like we cannot de-structure the object (...args
) on the html tag and the child component will read the values like how React does!
<app-test [input1]="args?.input1" [input2]="args?.input2" [input3]="args?.input3"/>