We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
9.0.0
angular
https://stackblitz.com/edit/ng-zorro-antd-mobile-start-yhwjim?file=src%2Fapp%2Fapp.component.html,src%2Fapp%2Fapp.component.ts
<ListItem DatePicker [minDate]="date" [extra]="currentDateFormat(date, 'yyyy-mm-dd')" [arrow]="'horizontal'" [mode]="'date'" [ngModel]="date" (onOk)="onOk($event)"
date: Date = new Date();
在datepicker中 mindate只允许传入string类型,而传入date string会报错,但是传入date不会
传入date字符串报错
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version
9.0.0
Environment
angular
Reproduction link
https://stackblitz.com/edit/ng-zorro-antd-mobile-start-yhwjim?file=src%2Fapp%2Fapp.component.html,src%2Fapp%2Fapp.component.ts
Steps to reproduce
<ListItem
DatePicker
[minDate]="date"
[extra]="currentDateFormat(date, 'yyyy-mm-dd')"
[arrow]="'horizontal'"
[mode]="'date'"
[ngModel]="date"
(onOk)="onOk($event)"
date: Date = new Date();
What is expected?
在datepicker中 mindate只允许传入string类型,而传入date string会报错,但是传入date不会
What is actually happening?
传入date字符串报错
Other?
The text was updated successfully, but these errors were encountered: