Skip to content

Commit

Permalink
chore: add forwardRefs to VToolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
userquin committed Oct 10, 2024
1 parent f286352 commit e5e87c8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/vuetify/src/components/VToolbar/VToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { useBackgroundColor } from '@/composables/color'
import { makeComponentProps } from '@/composables/component'
import { provideDefaults } from '@/composables/defaults'
import { makeElevationProps, useElevation } from '@/composables/elevation'
import { forwardRefs } from '@/composables/forwardRefs.ts'
import { useRtl } from '@/composables/locale'
import { makeRoundedProps, useRounded } from '@/composables/rounded'
import { makeTagProps } from '@/composables/tag'
Expand Down Expand Up @@ -218,10 +219,11 @@ export const VToolbar = genericComponent<VToolbarSlots>()({
)
})

return {
return forwardRefs({
contentHeight,
extensionHeight,
}
calculateHeight,
})
},
})

Expand Down

0 comments on commit e5e87c8

Please sign in to comment.