Répondre

0

réponse est ici: https://vaadin.com/forum#!/thread/13790736

Merci

pad(i: number) { 
    return i < 10 ? '0' + i : i; 
} 

ngOnInit() { 
    const selectedDate = new Date(); 
    this.birthday = `${selectedDate.getFullYear()}-${this.pad(selectedDate.getMonth() + 1)}-${this.pad(selectedDate.getDate())}`; 
}