使用ng-bootstrap的Toast组件时出现以下错误
Uncaught Error: Template parse errors:
'ngb-toast' is not a known element:
1. If 'ngb-toast' is an Angular component, then verify that it is part of this module.
2. If 'ngb-toast' is a Web Component then add 'CUSTOM_ELEMENTS_SCHEMA' to the '@NgModule.schemas' of this component to suppress this message.
我的引导程序版本是
"@ng-bootstrap/ng-bootstrap": "^4.1.0",
"bootstrap": "^4.3.1",
您是否将其添加到app.module
?
@NgModule({
...
imports: [
NgbModule
],
})