Hello there,
I have a v-date-picker and i'm trying to disable the popover. Here is my code:
<v-date-picker
mode='range'
show-popover="false"
v-model="modalCustomDateRange"
:max-date="new Date()"
is-inline
show-caps></v-date-picker>
I've tried with and without a colon before show-popover. I've tried setting popover to null inside drag-attributes, and the default popover keeps showing.

Please help!
As of v0.8.0 the prop was renamed to show-day-popover to avoid confusion with the entire calendar used as a popover for the input control.
Thanks!
@nathanreyes just stumbled on this, the docs still list show-popover and not show-day-popover
Also correct usage is :show-day-popover=false
As of
v0.8.0the prop was renamed toshow-day-popoverto avoid confusion with the entire calendar used as a popover for the input control.
Have you included this in the guide? I can only find this in the changelog. The guide or API documentation does not refer to this.
Most helpful comment
As of
v0.8.0the prop was renamed toshow-day-popoverto avoid confusion with the entire calendar used as a popover for the input control.