У меня есть входной сигнал, который я принимаю и устанавливаю как атрибут, но в браузере я вижу ошибку
. Это не является функцией
export class SkeletonComponent implements OnInit {
readonly width = input('');
ngOnInit(): void {
if (isPlatformServer(this.platformId)) {
return;
}
const host = this.host.nativeElement;
host.style.setProperty('--app-skeleton-width', this.width() || '100%');
Подробнее здесь: https://stackoverflow.com/questions/796 ... tion-error