Component-parent component-modal
so the parent component would have a button that would call the component-modal.
Thank you in advance ...
Component-parent component-modal
so the parent component would have a button that would call the component-modal.
Thank you in advance ...
Create the modal in Component-modal.html
Use * ngIf in Component-parent.html
<button (click)="adicioneComponentModal()">Adicione Component Modal</button>
<component-modal *ngIf="modals != null"></component-modal>
No Component-parent.ts
modals: ComponentModal = null;
adicioneComponentModal() {
this.modals = new ComponentModal();
}