Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
279 views
in Technique[技术] by (71.8m points)

angular - I have tried to implement notification bell icon my admin portal

ERROR in projects/boss/src/app/secure/ui/toolbar/toolbar.component.html:5:13 - error NG8001: 'shared-notification-widget-count' is not a known element: 1. If 'shared-notification-widget-count' is an Angular component, then verify that it is part of this module. 2. If 'shared-notification-widget-count' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.

5             <shared-notification-widget-count></shared-notification-widget-count>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There are two common scenarios that cause this error:

  • You forgot to add the shared-notification-widget-count.component to your modules declaration
  • Or you have declared this component in another module, that you want to use and then need to import the module

For a detailed answer, please add a code


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...