diff --git a/components/lib/calendar/Calendar.vue b/components/lib/calendar/Calendar.vue index 19a5b8648..20e851571 100755 --- a/components/lib/calendar/Calendar.vue +++ b/components/lib/calendar/Calendar.vue @@ -2642,7 +2642,7 @@ export default { this.$emit('input', event); }, onInputClick() { - if (this.isEnabled() && !this.overlayVisible) { + if (this.showOnFocus && this.isEnabled() && !this.overlayVisible) { this.overlayVisible = true; } },