diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index 4dbeccbfc..2de385c33 100755 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -664,7 +664,7 @@ export default { this.currentMonth--; } - this.$emit('month-change', {month: this.currentMonth, year: this.currentYear}); + this.$emit('month-change', {month: this.currentMonth + 1, year: this.currentYear}); } }, navForward(event) { @@ -689,7 +689,7 @@ export default { this.currentMonth++; } - this.$emit('month-change', {month: this.currentMonth , year: this.currentYear}); + this.$emit('month-change', {month: this.currentMonth + 1, year: this.currentYear}); } }, decrementYear() {