Guest User

Untitled

a guest
Jul 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. export class JakisComponent {
  2. emailValue: string;
  3. @Input()
  4. get email(): string {
  5. return this.emailValue;
  6. }
  7. set email(value): string {
  8. this.emailValue = value;
  9. this.emailChange.emit(this.emailValue);
  10. }
  11. @Output() emailChange = new EventEmitter<string>();
  12.  
  13.  
  14. }
Add Comment
Please, Sign In to add comment