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

feat(VNumberInput): clear zero's on focus #20365

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

J-Sek
Copy link
Contributor

@J-Sek J-Sek commented Aug 20, 2024

Description

resolves #19900

I intend to include one more docs example for 0.00 once strict precision support (#20252) is merged.

Markup:

<template>
  <v-container>
    <v-number-input clear-zero clearable v-model='someValue' />
    <code>value: {{ someValue }} | {{ typeof someValue }}</code>
  </v-container>
</template>

<script setup>
  import { ref } from 'vue'
  const someValue = ref(0)
</script>

@J-Sek J-Sek force-pushed the feature-19900 branch 3 times, most recently from e44907d to 59a6237 Compare August 20, 2024 14:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature Request] Clear default value on VNumberInput focus
2 participants