Skip to content

Commit

Permalink
fix(VAppBar): scrollBehavior type for fully-hide
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Jul 16, 2024
1 parent 6bdd230 commit 040fda8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VAppBar/VAppBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import type { PropType } from 'vue'
import type { VToolbarSlots } from '@/components/VToolbar/VToolbar'

export const makeVAppBarProps = propsFactory({
scrollBehavior: String as PropType<'hide' | 'inverted' | 'collapse' | 'elevate' | 'fade-image' | (string & {})>,
scrollBehavior: String as PropType<'hide' | 'fully-hide' | 'inverted' | 'collapse' | 'elevate' | 'fade-image' | (string & {})>,
modelValue: {
type: Boolean,
default: true,
Expand Down

0 comments on commit 040fda8

Please sign in to comment.