seantrant
8/16/2017 - 1:30 PM

Sending a variable to child component

Sending a variable to child component


// in child component 
@Input() name: string;


//in parents html

// to send string
<rio-hello name="World"></rio-hello>
// to send variable ( bind) 
<rio-hello [name]="helloName"></rio-hello>