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()
]
网友评论