fixed: uiDateFormat undefind error
| | |
| | | return `${this.compareTarget.getHours()}:${minutes}`; |
| | | } |
| | | |
| | | return isThisYear(this.date) |
| | | ? `${thisYearDayLabel} ${this.date.getHours()}:${minutes}` |
| | | : `${this.date.getFullYear()}/${this.date.getMonth() + 1}/${this.date.getDate()} ${this.date.getHours()}:${minutes}`; |
| | | return isThisYear(this.compareTarget) |
| | | ? `${thisYearDayLabel} ${this.compareTarget.getHours()}:${minutes}` |
| | | : `${this.compareTarget.getFullYear()}/${this.compareTarget.getMonth() + 1}/${this.compareTarget.getDate()} ${this.compareTarget.getHours()}:${minutes}`; |
| | | } |
| | | } |
| | | </script> |