angular集成bootstrap4

1、打开终端,输入命令新建一个angular app

ng new app

2、集成bootstrap
安装ngx-bootstrapBootstrap
在新建的项目中打开终端,运行如下命令

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查看

你可能感兴趣的:(angular,bootstrap)