Skip to content

Commit

Permalink
fix(VHover): false isHovering by default
Browse files Browse the repository at this point in the history
fixes #19601
  • Loading branch information
vkrms committed Apr 24, 2024
1 parent 1870ae7 commit 90f1ba3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vuetify/src/components/VHover/VHover.tsx
Expand Up @@ -7,7 +7,7 @@ import { genericComponent, propsFactory } from '@/util'

type VHoverSlots = {
default: {
isHovering: boolean | undefined
isHovering: boolean | null
props: Record<string, unknown>
}
}
Expand All @@ -16,7 +16,7 @@ export const makeVHoverProps = propsFactory({
disabled: Boolean,
modelValue: {
type: Boolean,
default: undefined,
default: null,
},

...makeDelayProps(),
Expand Down

0 comments on commit 90f1ba3

Please sign in to comment.