2
respostas

erro NG8001 'app-nova-transferencia' is not a known element:

No tópico 01 aula "Utilizando o primeiro componente" do curso "Angular: Começando com o framework" tive o seguinte erro:

Error: src/app/app.component.html:1:1 - error NG8001: 'app-nova-transferencia' is not a known element:

  1. If 'app-nova-transferencia' is an Angular component, then verify that it is part of this module.
  2. If 'app-nova-transferencia' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.

1


  src/app/app.component.ts:5:16
    5   templateUrl: './app.component.html',
Error occurs in the template of component AppComponent.
2 respostas

Verifique se o "selector" do NovaTransferenciaComponent é exatamente igual a "app-nova-transferencia" - qualquer diferença causa esse erro. Provavelmente está sem o prefixo "app-"

Olá Stella, tudo bem?

Esse erro pode ocorrer quando o seu componente não está declarado num módulo.

Veja se o componente Nova Transferencia está sendo importado no arquivo app.module.ts e presente nas declarations no decorator @NgModule.

Segue o código abaixo para você comparar:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { NovaTransferenciaComponent } from './nova-transferencia/nova-transferencia.component';

@NgModule({
  declarations: [
    AppComponent,
    NovaTransferenciaComponent
  ],
  imports: [
    BrowserModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Espero ter ajudado, abraços e bons estudos!