I am using a ConfirmDialog component from PrimeNg Collection. I can set my message as this:
this.confirmationService.confirm({
message: 'my message',
});
It works but the problem is that it gets messy if I need a big set of tags with other components in there. I want to write my message in an HTML template alongside p-confirmDialog tag with Angular's directives and components embedded right into it.
How do I achieve this?