angular5 ng-bootstrap和ngx-bootstrap区别

https://angular.cn/resources

ngx-bootstrap

 安装:

npm install ngx-bootstrap --save

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

还需要再引入 theme
 href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">


使用方法

一、module文件中引入模块


import { PaginationModule } from 'ngx-bootstrap/pagination'; @NgModule({ imports: [PaginationModule.forRoot(),...] }) export class AppModule(){}

二、在在component中使用
            previousText="上一页" nextText="下一页" firstText="第一页" lastText="最后一页">



ng-bootstrap
安装:

npm install --save @ng-bootstrap/ng-bootstrap
再引入css
 href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet">



使用方法:

一、module文件中引入模块
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';

@NgModule({
  declarations: [AppComponent, ...],
  imports: [NgbModule.forRoot(), ...],
  bootstrap: [AppComponent]
})
二、在在component中使用
                  [(page)]="pageNo" aria-label="Default pagination" [maxSize]="5"
[boundaryLinks]="true">


 



总结,ng-bootstrap 以需要引入ngbModule,任何组件,如分页,tab,datapicker......都可以使用了,
但是ngx-bootstrap必须使用哪个组件就引入哪个组件

个人推荐使用ngx-bootstrap
 


转载于:https://www.cnblogs.com/mttcug/p/7994066.html

你可能感兴趣的:(angular5 ng-bootstrap和ngx-bootstrap区别)