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(VNumberInput): fix inc/dec slots with split control variant #20072

Merged

Conversation

SonTT19
Copy link
Contributor

@SonTT19 SonTT19 commented Jun 28, 2024

Description

fixes #20056

Markup:

<template>
  <v-app>
    <v-container>
      <v-number-input control-variant="default" />
      <v-number-input control-variant="default">
        <template #increment> inc </template>
        <template #decrement> dec </template>
      </v-number-input>

      <v-number-input control-variant="split" />
      <v-number-input control-variant="split">
        <template #increment> inc </template>
        <template #decrement> dec </template>
      </v-number-input>
      <v-number-input control-variant="stacked" />
      <v-number-input control-variant="stacked">
        <template #increment> inc </template>
        <template #decrement> dec </template>
      </v-number-input>
    </v-container>
  </v-app>
</template>
@johnleider johnleider requested a review from yuwu9145 July 2, 2024 17:54
@johnleider johnleider added this to the v3.6.x milestone Jul 2, 2024
@johnleider johnleider added T: bug Functionality that does not work as intended/expected C: VNumberInput labels Jul 2, 2024
@johnleider johnleider merged commit 4ac8aa4 into master Jul 2, 2024
17 of 19 checks passed
@johnleider johnleider deleted the fix/20056-v-number-input-slots-with-split-control-variant branch July 2, 2024 21:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C: VNumberInput T: bug Functionality that does not work as intended/expected
2 participants