In my case I was getting weird html template errors including the one OP describes because I created new component and forgot to add it to the module declarations
app.module.ts
@NgModule({
...
declarations: [MyComponent]
}
In my case I was getting weird html template errors including the one OP describes because I created new component and forgot to add it to the module declarations
app.module.ts
@NgModule({
...
declarations: [MyComponent]
}