vuetify icon indicating copy to clipboard operation
vuetify copied to clipboard

feat(VNumberInput): clear zero's on focus

Open J-Sek opened this issue 6 months ago • 0 comments

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 avatar Aug 20 '24 14:08 J-Sek