Skip to content

Instantly share code, notes, and snippets.

@michelmarciano
Created February 21, 2019 10:18
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 michelmarciano/12e4d3645b8a91404e0232cbb412282d to your computer and use it in GitHub Desktop.
Save michelmarciano/12e4d3645b8a91404e0232cbb412282d to your computer and use it in GitHub Desktop.
angular update componente
import { Component, OnInit, Input } from '@angular/core';
import { GeradorSenha } from './gerador-senha.model';
@Component({
selector: 'fil-gerador-senha',
templateUrl: './gerador-senha.component.html',
styleUrls: ['./gerador-senha.component.css']
})
export class GeradorSenhaComponent implements OnInit {
@Input() geradorSenha : GeradorSenha
constructor() { }
ngOnInit() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment