Skip to content
New issue

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

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

Already on GitHub? # to your account

fix(VNumberInput): allow press delete key #20125

Merged
merged 1 commit into from
Jul 9, 2024

Conversation

SonTT19
Copy link
Contributor

@SonTT19 SonTT19 commented Jul 9, 2024

Description

fixes #20083

Markup:

<template>
  <v-app>
    <v-container>
      <v-number-input
        v-model.trim="msg"
        :hide-input="false"
        control-variant="stacked"
        suffix=""
        type="number"
        variant="outlined"
        width="250"
        inset
      />

      {{ msg }}
    </v-container>
  </v-app>
</template>

<script setup>
  import { ref } from 'vue'

  const msg = ref('')
</script>

@johnleider johnleider added this to the v3.6.x milestone Jul 9, 2024
@johnleider johnleider added T: bug Functionality that does not work as intended/expected C: VNumberInput labels Jul 9, 2024
@johnleider johnleider merged commit 09c294b into master Jul 9, 2024
19 checks passed
@johnleider johnleider deleted the fix/20083-v-number-input-with-delete-key branch July 9, 2024 15:50
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
C: VNumberInput 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.6.9] Delete key doesn't work on VInputNumber
2 participants