D
пользвоатель находится на странице с комментариями, другой пользователь на той же странице оставил комментарий. и надо чтобы первому пользователю пришло уведомление или отобразился комментарий.
Куда копать/смотреть?спасибо
Size: a a a
D
RK
MF
<instead-of-img src="" alt="" [useImage]="true || false"></instead-of-img>
@Component({
selector: 'instead-of-img',
template: `
<img
*ngIf="useImage"
[src]="src"
[alt]="alt"
[width]="width"
[height]="height"
[src-set]="srcSet"
/>
<p *ngIf="!useImage">{{ alt || '' }}</p>
`
})
export class InsteadOfImageComponent {
@Input() useImage: boolean = true;
@Input() src: string | null = null;
@Input() alt: string | null = null;
@Input() width: string | null = null;
@Input() height: string | null = null;
@Input() srcSet: string | null = null;
// ...
}MF
В
S
В
N
S
N
N
S
N
S
Вキ
N