답변

0

답변 Exception Image
클릭 여기에 있습니다 : https://vaadin.com/forum#!/thread/13790736

감사

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())}`; 
} 
관련 문제