Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <foot-play-edit-perfil-modal (sendValue)="receiveMessage($event)"
  2. [player]="player" [showModalEdit]="showModalEditPerfil"></foot-play-
  3. edit-perfil-modal>
  4.  
  5. receiveMessage($event) {
  6. console.log('teste',$event)
  7. }
  8.  
  9. @Output() sendValue = new EventEmitter<any>();
  10. ...
  11. sendMessage() {
  12. this.sendValue.emit('teste')
  13. }
  14. ...
  15. updateProfile(){
  16. this.sendMessage()
  17. }
  18.  
  19. <div class="perfil-modal__buttons">
  20. <button class="btn btn--primary" (click)="updateProfile()">Salvar</button>
  21. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement