Эй, я новичок в Angular и хочу получить данные с matsnackbar.
Возможно ли это?
apiName: string;
this.snackBar.openFromComponent(CustomSnackbarComponent, {
duration: 5000000,
data: this.apiName;
});
Мой компонент:
export class CustomSnackBarComponent implements OnInit {
constructor(private sanitizer: DomSanitizer) { }
ngOnInit() {
}
}