“¿Qué hace el emisor de eventos en angular?” Código de respuesta

EMITOR DE EVENTOS ANGULAR

  @Output() open: EventEmitter<any> = new EventEmitter();


  toggel() {
  	this.open.emit(null);
  }	
Gorgeous Gentoo

¿Qué hace el emisor de eventos en angular?

Data flows into your component via property bindings and flows out of your component through event bindings. If you want your component to notify his parent about something you can use the Output decorator with EventEmitter to create a custom event.
Cruel Cassowary

Respuestas similares a “¿Qué hace el emisor de eventos en angular?”

Preguntas similares a “¿Qué hace el emisor de eventos en angular?”

Más respuestas relacionadas con “¿Qué hace el emisor de eventos en angular?” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código