Bootstrap 4.1.1 Navbar not working with Angular 6

前端 未结 4 505
鱼传尺愫
鱼传尺愫 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:38

    path to popper should be : node_modules/popper.js/dist/umd/

            "styles": [
              "node_modules/bootstrap/dist/css/bootstrap.min.css",
              "src/styles.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"
            ]
    

提交回复
热议问题