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(group): use index as value if not provided #19119

Merged
merged 2 commits into from
Jan 30, 2024
Merged

Conversation

johnleider
Copy link
Member

Motivation and Context

closes #19107

Markup:

<template>
  <v-app>
    <v-container>
      <pre>{{ JSON.stringify(step, null, 2) }}</pre>
      <v-stepper v-model="step">
        <v-stepper-header>
          <v-stepper-item title="step 1" />
          <v-stepper-item title="step 2" />
        </v-stepper-header>

        <v-stepper-window>
          <v-stepper-window-item> step 1 </v-stepper-window-item>
          <v-stepper-window-item> step 2 </v-stepper-window-item>
        </v-stepper-window>
      </v-stepper>
    </v-container>
  </v-app>
</template>
<script setup>
  import { ref } from 'vue'
  const step = ref(1)
</script>

@johnleider johnleider added T: bug Functionality that does not work as intended/expected E: group Group composable labels Jan 29, 2024
@johnleider johnleider added this to the v3.5.x milestone Jan 29, 2024
@johnleider johnleider requested a review from KaelWD January 29, 2024 17:55
@johnleider johnleider self-assigned this Jan 29, 2024
@johnleider johnleider merged commit 1a23d47 into master Jan 30, 2024
17 of 18 checks passed
@johnleider johnleider deleted the fix/19107-group-value branch January 30, 2024 15:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
E: group Group composable T: bug Functionality that does not work as intended/expected
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug Report][3.5.1] v-stepper starts at 0 when using v-stepper-header
1 participant