Answers for "set @Output through modalref angular"

0

set @Output through modalref angular

openModal() {
  const modalRef = this.modalService.open(ModalContentComponent);
  modalRef.componentInstance.user = this.user;
  modalRef.componentInstance.passEntry.subscribe((receivedEntry) => {
  	console.log(receivedEntry);
  })
}
Posted by: Guest on August-24-2021
0

set @Output through modalref angular

openModal() {
  const modalRef = this.modalService.open(ModalContentComponent);
  modalRef.componentInstance.user = this.user;
  modalRef.componentInstance.passEntry.subscribe((receivedEntry) => {
  	console.log(receivedEntry);
  })
}
Posted by: Guest on August-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language