[Vuejs]-How to show only 1 calendar in vue2-daterange-picker?

0👍

I found an alternative solution to hide the second calendar by overriding the CSS. I’m posting my answer here to help other people who might encounter this problem.

.daterangepicker {min-width: unset !important;}

.drp-calendar.col.right{ display: none; }

Leave a comment