我正在使用带有ng-bootstrap 的angular-cli@webpack版本(不是ng2-bootstrap)。我对我的 angular-cli 项目执行了以下操作:
npm install --save @ng-bootstrap/ng-bootstrap
然后将其添加到我的文件中:
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
然后我将它添加到 index.html:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.3/css/bootstrap.min.css">
太好了,一切正常。我的问题:
(第 1 部分)我真的必须在 index.html 中添加 bootstrap.min.css 吗?我可以不将 bootstrap.css 添加到 index.html 并仍然使用 ng-boostrap 吗?
(第 2 部分)如果不是,那么为什么 ng-bootstrap 不能在他们的设置中只包含 bootstrap.css 而我不需要将它添加到 index.html 中?