Angular UI ngx-bootstrap 使用说明

序言:

  ngx-bootstrap包含了由Angular提供支持的所有核心的Bootstrap组件。我们可以直接通过命令行安装后使用,同时使用该系列的组件不需要包含原始的JS组件。但是我们需要引入bootstrap的css样式。

步骤:

1、安装

1.1 通过npm安装ngx-bootstrap

  npm install ngx-bootstrap --save

1.2 通过cnpm 安装ngx-bootstrap

  cnpm install ngx-bootstrap --save

 

2、添加bootstrap样式到index.html中

2.1 bootstrap3的样式

   href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">

2.2 bootstrap4的样式

   href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet">

 

3、对应组件的用法,如Accordion组件

复制代码
// RECOMMENDED (doesn't work with system.js)
import { AccordionModule } from 'ngx-bootstrap/accordion';
// or
import { AccordionModule } from 'ngx-bootstrap';

@NgModule({
  imports: [AccordionModule.forRoot(),...]
})
export class AppModule(){}
复制代码

具体的组件请参考http://ngx-bootstrap.com/#/


你可能感兴趣的:(angular)