mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
14 lines
215 B
Vue
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>
|