Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created December 13, 2016 15:09
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 debugmodedotnet/f34bac42c65cca68eace336d270e4014 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/f34bac42c65cca68eace336d270e4014 to your computer and use it in GitHub Desktop.
import { Component,Input,OnInit } from '@angular/core';
@Component({
selector: 'appchild',
template: `<h2>Hi {{_greetMessage}}</h2>`
})
export class AppChildComponent implements OnInit{
_greetMessage : string;
constructor(){
}
ngOnInit(){
}
@Input()
set greetMessage(message : string ){
this._greetMessage = message+ " manipulated at child component";
}
get greetmessage(){
return this._greetMessage;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment