Angular專案中如何引入 bootstrap

weixin_33785972發表於2018-07-10

npm install ngx-bootstrap bootstrap@next --save

.angular-cli.json 中的 “styles”裡面新增:
"../node_modules/bootstrap/dist/css/bootstrap.min.css"

在 app.module.ts 中新增
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';

imports: [
BsDropdownModule.forRoot()
]

相關文章