错误:“ngb-tab”不是已知元素。角 11

Khi*_*aat 4 node.js ng-bootstrap angular angular11

我正在将我的应用程序升级到 angular 11 并面临引导程序选项卡的问题

错误:'ngb-tab' 不是已知元素:如果 'ngb-tab' 是一个 Angular 组件,则验证它是否是该模块的一部分。

'ngb-tabset' 不是已知元素:如果 'ngb-tabset' 是一个 Angular 组件,则验证它是否是该模块的一部分。

我正在使用ng-bootstrap v8.0.0angular 11

我在 app.modules.ts 中导入所需的模块,即

import { NgbModule } from "@ng-bootstrap/ng-bootstrap";

@NgModule({
  declarations: [AppComponent, FullLayoutComponent, ContentLayoutComponent],
  imports: [
    ......
    NgbModule,
    ........
  ],
Run Code Online (Sandbox Code Playgroud)

Khi*_*aat 7

根据Documentation,ngb-tab & ngb-tabset 从 ng-bootstrap v8.0.0 中删除。因此,我已将选项卡转换为导航指令,从而解决了我的问题