Skip to content

Instantly share code, notes, and snippets.

@NishuGoel
Created July 27, 2018 16:55
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/586d5da00bbc87ec1a78a6b0e70ca725 to your computer and use it in GitHub Desktop.
Save NishuGoel/586d5da00bbc87ec1a78a6b0e70ca725 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 && message.trim()) || "I am default message";
}
get message(){
return this._message;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment