我已经尝试过角度为2的日期选择器。https://github.com/kekeh/mydatepicker#options-attribute
import {IMyDpOptions} from 'mydatepicker';
// other imports here...
export class MyTestApp {
private myDatePickerOptions: IMyDpOptions = {
// other options...
dateFormat: 'dd.mm.yyyy',
};
// Initialized to specific date (09.10.2018).
private model: Object = { date: { year: 2018, month: 10, day: 9 } };
constructor() { }
}
没有选项以 yy 格式自定义年份。任何人都可以建议我。
提前致谢