Utiliser Les Donnes Passees PBB Modal Dans Son Propre Composant En Angular
export class ModalComponent {
passedData: typeOfData; //declare it!
someFunction() { //or some lifecycle hook
console.log(this.passedData) //and then, use it!
}
//rest of the ModalComponent
}
Delightful Dragonfly