I created a basic Angular project in VS Code, but the app.module.ts
file was missing, so I manually created it and added @NgModule
. I then generated a new component named user and imported this user component in app.module.ts
, but I got an error.
However, when I imported the user component in appponent.ts
, it worked. It seems like app.module.ts
is not being compiled properly. Additionally, I am getting an error saying NgModule
is not declared. How can I resolve this issue?
Errors:
X [ERROR] NG8001: 'app-use' is not a known element:
- If 'app-use' is an Angular component, then verify that it is included in the '@Component.imports' of this component.
- If 'app-use' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@Component.schemas' of this component to suppress this message. [plugin angular-compiler]
X [ERROR] NG8003: No directive found with exportAs 'ngForm'. [plugin angular-compiler]
I expected the app.module.ts
file to compile correctly and recognize @NgModule
and other Angular decorators.
I expected the user component to be successfully declared in app.module.ts
without any issues.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745348855a4623704.html
评论列表(0条)