Skip to content

Commit

Permalink
fix: the display error of the year panel header (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
mengxiong10 committed Feb 10, 2019
1 parent 737f8b4 commit 7bc2785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/calendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export default {
return this.value && formatDate(this.value, this.dateFormat)
},
yearHeader () {
return this.firstYear + ' ~ ' + (this.firstYear + 10)
return this.firstYear + ' ~ ' + (this.firstYear + 9)
},
months () {
return this.t('months')
Expand Down

0 comments on commit 7bc2785

Please sign in to comment.