Skip to content

Commit

Permalink
fix(VStepperVertical): provide eager in defaults props (#20033)
Browse files Browse the repository at this point in the history
fixes #20025
  • Loading branch information
SonTT19 authored Jul 2, 2024
1 parent c168e59 commit 620a0d9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const VStepperVertical = genericComponent<VStepperVerticalSlots>()({

setup (props, { slots }) {
const vExpansionPanelsRef = ref<typeof VExpansionPanels>()
const { color, editable, prevText, nextText, hideActions } = toRefs(props)
const { color, eager, editable, prevText, nextText, hideActions } = toRefs(props)

const model = useProxiedModel(props, 'modelValue')
const items = computed(() => props.items.map((item, index) => {
Expand All @@ -74,6 +74,7 @@ export const VStepperVertical = genericComponent<VStepperVerticalSlots>()({
provideDefaults({
VStepperVerticalItem: {
color,
eager,
editable,
prevText,
nextText,
Expand Down

0 comments on commit 620a0d9

Please sign in to comment.