Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(VStepperVertical): correct slots types #20537

Merged
merged 3 commits into from
Jan 24, 2025

Conversation

SonTT19
Copy link
Contributor

@SonTT19 SonTT19 commented Sep 30, 2024

Description

fixes #20213
fixes #20803

Markup:

<template>
  <v-app>
    <v-container>
      <v-stepper-vertical>
        <v-stepper-vertical-item>
          <template #next="{ next }">
            <v-btn @click="next">Next</v-btn>
          </template>
          <template #prev> </template>
        </v-stepper-vertical-item>
        <v-stepper-vertical-item>
          <template #next> </template>
          <template #prev="{ prev }">
            <v-btn @click="prev">Prev</v-btn>
          </template>
        </v-stepper-vertical-item>
      </v-stepper-vertical>
    </v-container>
  </v-app>
</template>

@MajesticPotatoe MajesticPotatoe added T: bug Functionality that does not work as intended/expected C: VStepperVertical labels Oct 28, 2024
@KaelWD KaelWD added this to the v3.7.x milestone Jan 24, 2025
@KaelWD KaelWD changed the title fix(VStepperVertical): fix slots types fix(VStepperVertical): correct slots types Jan 24, 2025
@KaelWD KaelWD merged commit 0230259 into master Jan 24, 2025
16 checks passed
@KaelWD KaelWD deleted the fix/20213-v-stepper-vertical-slot-types branch January 24, 2025 06:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VStepperVertical T: bug Functionality that does not work as intended/expected
Projects
None yet
3 participants