我正在尝试使用 ng2-datepicker。但它像这样打开
它应该以当前日期打开。以下是我的 HTML 和 TS 代码
<div class="form-group">
<ng-datepicker [(ngModel)]="date" [options]="options"></ng-datepicker>
</div>
options: DatepickerOptions = {
displayFormat: 'DD-MMM-YYYY',
barTitleFormat: 'MMM YYYY',
dayNamesFormat: 'dd',
locale: enLocale,
minDate: new Date(Date.now()),
};