Skip to content

Commit

Permalink
feat(VTooltip): add eager prop support (#16752)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider authored Feb 28, 2023
1 parent 1c0a0d2 commit d0761be
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/vuetify/src/components/VTooltip/VTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const VTooltip = genericComponent<OverlaySlots>()({
closeOnBack: false,
location: 'end' as const,
locationStrategy: 'connected' as const,
eager: true,
minWidth: 0,
offset: 10,
openOnClick: false,
Expand All @@ -40,7 +41,6 @@ export const VTooltip = genericComponent<OverlaySlots>()({
}), [
'absolute',
'persistent',
'eager',
]),
},

Expand Down Expand Up @@ -102,7 +102,6 @@ export const VTooltip = genericComponent<OverlaySlots>()({
origin={ origin.value }
persistent
role="tooltip"
eager
activatorProps={ activatorProps.value }
_disableGlobalStack
{ ...scopeId }
Expand Down

0 comments on commit d0761be

Please sign in to comment.