NgbModal not opening modal from component included in another component

前端 未结 2 1458
旧巷少年郎
旧巷少年郎 2021-01-15 13:14

I\'m using Anuglar 6

I have two components account and profile. account component is added to the app

2条回答
  •  梦毁少年i
    2021-01-15 13:21

    This is a big of a vague guess but you probably need to import the NgbModule like so in your app.module.ts

    import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
    
    @NgModule({
      imports: [
        NgbModule.forRoot()
      ]
    })
    

    That should then fix the error you're running into.

提交回复
热议问题