0

共有モデル変数の形式がサブ コンポーネントと互換性がありません。アプリケーション モデルを台無しにせずに変換を処理するにはどうすればよいですか?

import {Calendar} from 'primeng/primeng';

@Component({
    selector: 'foo',
    directives: [Calendar],
    template: `
    ...
    <p-calendar [(ngModel)]="model"></p-calendar>
    ...
`})
class FooComponent {
    // input format: "1970-01-01T00:00:00Z"
    // model is shared within the app
    // should stay in this format
    // Calendar doesn't support this format
    @Input() model; 


}
4

1 に答える 1