Bootstrap 4 Navbar doesnt collapse in Angular4

后端 未结 4 653
时光说笑
时光说笑 2021-01-14 05:37

I\'m working with Bootstrap 4 and Ng-Bootstrap in an Angular 4 Project,

i have linked the que bootstrap.css in my angular-cli.json this way

 \"styles         


        
4条回答
  •  太阳男子
    2021-01-14 06:12

    this works fine for me I installed npm i --save @ng-bootstrap/ng-bootstrap ng add @angular/localize

    • app.module.ts

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

    imports:[NgbModule]

    NgbModule.forRoot() not working

    • angular.json "styles": [ "node_modules/bootstrap/dist/css/bootstrap.min.css", "src/styles.css" ], "scripts": ["node_modules/jquery/dist/jquery.min.js",
      "node_modules/bootstrap/dist/js/bootstrap.js]`

    Hope this helps, even just alittle bit

提交回复
热议问题