Home > Article > Web Front-end > What is ngx bootstrap
"ngx-bootstrap" is a UI framework for Angular. It is the best way for Angular to quickly inherit bootstrap3 or bootstrap4 components, which can effectively improve development efficiency; you can use "npm install ngx-bootstrap --save "command to install "ngx-bootstrap".
The operating environment of this tutorial: Windows10 system, bootstrap5 version, DELL G3 computer
ngx- bootstrap is a UI framework for Angular and is the best way for Angular to quickly integrate Bootstrap 3 or Bootstrap 4 components. ngx-bootstrap can improve development efficiency.
What is used here is @angular/cli 8.2.5, with bootstrap4
1. Install ngx-bootstrap
----In the project Open the cmd console in the directory and enter
----Use "--save" to write dependencies
npm install ngx-bootstrap --save // 也可以用国内的淘宝镜像快速安装 cnpm install ngx-bootstrap --save
2. Introduce the corresponding css into the project
Add the corresponding path to the styles global style in the angualr.json file
"styles": [ "../node_modules/bootstrap/scss/bootstrap" ],
3. Import dependencies
After introducing the global css style, you want to use the corresponding Components also need to import relevant dependencies in the corresponding module to use them normally
Introduce the folding component and tab component here
First introduce the component in the head
import {CollapseModule, TabsModule} from 'ngx-bootstrap';
Secondly need Declare
@NgModule({ imports: [ TabsModule.forRoot(), CollapseModule.forRoot(), ], })
in the imports in @NgModule and then you can use it
Related recommendations: bootstrap tutorial
The above is the detailed content of What is ngx bootstrap. For more information, please follow other related articles on the PHP Chinese website!