[Vuejs]-Vuetify date picker not displaying the whole month

0👍

Total noob Mistake! I had similar CSS class names on a table which then took place on the vuetify date picker that uses a table and it broke it.

1👍

I don’t know the reason for this! but I see it calculator height is incorrect, so it shows incomplete.

Solution: You can override CSS:

.v-date-picker-table { height: 100%; max-height: 300px; }

maybe help you!

Leave a comment