mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
16 lines
266 B
Vue
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>
|