Files
ui/docs/app/components/content/examples/input-number/InputNumberDecimalExample.vue
2024-11-18 10:08:57 +01:00

14 lines
215 B
Vue

<script setup lang="ts">
const value = ref(5)
</script>
<template>
<UInputNumber
v-model="value"
:format-options="{
signDisplay: 'exceptZero',
minimumFractionDigits: 1
}"
/>
</template>