Fixed #134 - Error with calendar year navigator

pull/146/head
cagataycivici 2020-01-07 19:05:06 +03:00
parent 4f38ce0e4f
commit 10e16f7afd
1 changed files with 20 additions and 15 deletions

View File

@ -2071,6 +2071,7 @@ export default {
return this.dateFormat || this.locale.dateFormat;
},
yearOptions() {
if (this.yearRange) {
let $vm = this;
const years = this.yearRange.split(':');
let yearStart = parseInt(years[0]);
@ -2089,6 +2090,10 @@ export default {
}
return yearOptions;
}
else {
return null;
}
},
monthPickerValues() {
let monthPickerValues = [];