我想使用ng-bootstrap包中的datepicker: https://ng-bootstrap.github.io/#/components/datepicker/overview
有什么方法可以只安装datepicker及其依赖项,而不安装所有软件包?
答案 0 :(得分:4)
您不能仅安装日期选择器,而只能在项目中导入日期选择器。
ng-boostrap
exports all the sub modules,如果只想使用日期选择器,则只能导入日期选择器:
...
import { NgbDatepickerModule } from '@ng-bootstrap/ng-bootstrap';
...
@NgModule({
imports: [..., NgbDatepickerModule.forRoot()],
...
构建项目时,只有ng-bootstrap中的该模块将被添加到您的捆绑软件中。