Bootstrap 4.1.1 Navbar not working with Angular 6

前端 未结 4 553
鱼传尺愫
鱼传尺愫 2021-01-13 03:05

I have been trying to work on Navbar with collapse menu and dropdown link using Bootstrap 4.1.1 and Angular 6 but somehow Navbar is not working at all. I can see elements co

4条回答
  •  我在风中等你
    2021-01-13 03:39

    After some time i have only put the bootstrap library below the jquery and the popper order...

    "styles": [
                  "src/styles.scss",
                  "node_modules/bootstrap/dist/css/bootstrap.min.css"
                ],
                "scripts": [
                  "node_modules/jquery/dist/jquery.min.js",
                  "node_modules/popper.js/dist/umd/popper.min.js",
                  "node_modules/bootstrap/dist/js/bootstrap.min.js",
                  "node_modules/fontawesome/index.js"
                ]
    

提交回复
热议问题