最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

typescript - Angular app.module.ts not compiling, NgModule not declared, and component import issues - Stack Overflow

programmeradmin1浏览0评论

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:

  1. If 'app-use' is an Angular component, then verify that it is included in the '@Component.imports' of this component.
  2. 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.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论