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

16 lines
266 B
Vue

<script setup lang="ts">
const value = ref(1500)
</script>
<template>
<UInputNumber
v-model="value"
:format-options="{
style: 'currency',
currency: 'EUR',
currencyDisplay: 'code',
currencySign: 'accounting'
}"
/>
</template>