Skip to content

Instantly share code, notes, and snippets.

@NishuGoel
Created July 27, 2018 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NishuGoel/718c9b573d9676d65d8123759cecdc2c to your computer and use it in GitHub Desktop.
Save NishuGoel/718c9b573d9676d65d8123759cecdc2c to your computer and use it in GitHub Desktop.
import { Component,Input,OnInit } from '@angular/core';
@Component({
selector: 'appchild',
template: `<h2>Hi {{message}}</h2>`
})
export class ChildComponent implements OnInit{
_message: string;
constructor(){
}
ngOnInit(){
}
@Input()
set message(message : string ){
this._message = message + "manipulated at child component";
}
get message(){
return this._message;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment