Skip to content

Conversation

J-Sek
Copy link
Contributor

@J-Sek J-Sek commented Aug 28, 2025

Description

resolves #21969

Markup:

<template>
  <v-app theme="dark">
    <v-container max-width="600">
      <v-card>
        <v-tabs
          bg-color="teal-darken-3"
          slider-color="teal-lighten-3"
          show-arrows
        >
          <v-tab
            v-for="i in 30"
            :key="i"
            :text="'Item ' + i"
            :value="'tab-' + i"
          />

          <template #prev>
            <v-btn icon="$prev" rounded="lg" size="small" v-tooltip:left="'Move left'" />
          </template>
          <template #next>
            <v-btn icon="$next" rounded="lg" size="small" v-tooltip:right="'Move right'" />
          </template>
        </v-tabs>
      </v-card>
    </v-container>
  </v-app>
</template>

@J-Sek J-Sek self-assigned this Aug 28, 2025
@J-Sek J-Sek added T: feature A new feature C: VTabs labels Aug 28, 2025
@J-Sek J-Sek changed the base branch from master to dev August 28, 2025 20:09
@J-Sek J-Sek changed the title Feat/vtabs slots feat(VTabs): slots for prev/next Aug 28, 2025
@KaelWD KaelWD force-pushed the dev branch 2 times, most recently from 6331ca7 to 564ccc8 Compare September 10, 2025 13:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature Request] Support for custom next / prev slots in v-tabs
1 participant