1、打开终端,输入命令新建一个angular app
ng new app
2、集成bootstrap
安装ngx-bootstrap
和 Bootstrap
在新建的项目中打开终端,运行如下命令
npm install ngx-bootstrap bootstrap --save
3、使用bootstrap样式
配置项目:必须将项目其配置为包括Bootstrap CSS,才能使用bootstrap的样式。
在angular.json中增加bootstrap的样式:从项目的根目录打开文件angular.json,找到Style配置项,指定bootstrap.min.css的路径。完成后,它应如下所示:
"styles": [
"src/styles.sass",
"./node_modules/bootstrap/dist/css/bootstrap.min.css"
],
注意:对angular.json进行更改时,您将需要重新启动ng服务以获取配置更改。
4、在app.module.ts
中引入要使用的ngx-bootstrap module
打开src/app/app.module.ts
并添加想要使用的组件module,例如BsDropdownModule.forRoot()
。
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
...
@NgModule({
...
imports: [BsDropdownModule.forRoot(), ... ],
...
})
具体使用哪个bootstrap组件,点击https://valor-software.com/ngx-bootstrap/#/documentation查看
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。