diff --git a/components/lib/calendar/Calendar.vue b/components/lib/calendar/Calendar.vue index 80043b4e5..db87418de 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -1272,10 +1272,10 @@ export default { let formattedValue = null; if (date) { - formattedValue = this.formatDate(date, this.datePattern); + formattedValue = this.formatDate(date, this.datePattern); if (this.showTime || this.timeOnly) { - formattedValue += ' ' + this.formatTime(date); + formattedValue += ' ' + this.formatTime(date); } }