如何在 Angular 中导入 NgbTime?
How to import NgbTime in Angular?
我正在尝试在我的 Angular 应用程序的其中一个组件中导入 NgbTime,如下所示:
import { NgbTime } from '@ng-bootstrap/ng-bootstrap/timepicker/ngb-time';
但我得到一个错误:找不到模块:错误:无法解析 'path-to-my-component'
中的“@ng-bootstrap/ng-bootstrap/timepicker/ngb-time”
而我能够毫无问题地导入 NgbDate,如下所示:
import { NgbDate } from '@ng-bootstrap/ng-bootstrap';
如何导入 NgbTime 模块?
基本上你需要这个更新的版本来导入
import { NgbTimeStruct } from '@ng-bootstrap/ng-bootstrap';
这样可以得到NgbTime
.
我正在尝试在我的 Angular 应用程序的其中一个组件中导入 NgbTime,如下所示:
import { NgbTime } from '@ng-bootstrap/ng-bootstrap/timepicker/ngb-time';
但我得到一个错误:找不到模块:错误:无法解析 'path-to-my-component'
中的“@ng-bootstrap/ng-bootstrap/timepicker/ngb-time”而我能够毫无问题地导入 NgbDate,如下所示:
import { NgbDate } from '@ng-bootstrap/ng-bootstrap';
如何导入 NgbTime 模块?
基本上你需要这个更新的版本来导入
import { NgbTimeStruct } from '@ng-bootstrap/ng-bootstrap';
这样可以得到NgbTime
.