As
the name implies @Input properties
are inbound properties which flows into a component from a parent component.
Input properties are setter properties marked with the @Input decorator.
Input properties are declared using the @Input decorator as follows.
@Input() Message: string
Once the property is declared in a component, we can pass values to the component from the parent component along with the component’s selector tag as follows.
Here parentMsg is a property defined in the parent component whose value gets passed to the child component through the Message @Input property.
Input properties are declared using the @Input decorator as follows.
@Input() Message: string
Once the property is declared in a component, we can pass values to the component from the parent component along with the component’s selector tag as follows.
Here parentMsg is a property defined in the parent component whose value gets passed to the child component through the Message @Input property.
No comments:
Post a Comment