fix(Calendar): incorrect month title after auto scroll (#5569)

This commit is contained in:
neverland
2020-01-14 10:52:39 +08:00
committed by GitHub
parent 25574aab72
commit 2047db68d9
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -158,7 +158,7 @@ export default createComponent({
this.months.some((month, index) => {
if (compareMonth(month, targetDate) === 0) {
this.$refs.months[index].$el.scrollIntoView();
this.$refs.months[index].scrollIntoView();
return true;
}