diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index c634e147d..a26313d3a 100755 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -328,7 +328,10 @@ export default { if (!this.$attrs.disabled) { this.initFocusableCell(); - this.overlay.style.width = DomHandler.getOuterWidth(this.$el) + 'px'; + + if (this.numberOfMonths === 1) { + this.overlay.style.width = DomHandler.getOuterWidth(this.$el) + 'px'; + } } } },