Я новичок в angular и столкнулся с проблемой при загрузке страницы. По вопросу см. Скриншот.
angular
hello.component.ts:
import { Component, Input } from '@angular/core'; @Component({ selector: 'hello', template: `<h1>Hello {{name}}!</h1>`, styles: [`h1 { font-family: Lato; }`] }) export class HelloComponent { @Input() name: string; }
введите описание изображения здесь
Вы можете проверить, что ваш модуль импортировал ваш компонент, как показано ниже.
@NgModule({ declarations: [ ... HelloComponent ],