以角度2格式自定义mydatepicker dd:mm:yy

时间:2017-07-11 06:46:28

标签: javascript angularjs angular2-forms angular2-services

我已经尝试过角度为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 格式自定义年份。任何人都可以建议我。

提前致谢

0 个答案:

没有答案