@mickey58 Haven’t seen any option to change that, sorry
I actually ended up using a third option, maybe you could be interested in this. The v-money codepen didn’t allow null-values, which I really need as in my case there’s a huge difference when a field has the value 0 compared to null. I’m also not using it for currencies
https://codepen.io/AnotherLinuxUser/pen/pWgOrZ
It was fairly easy to get working with q-field
<q-field>
<template v-slot:control>
<vue-autonumeric class="q-field__native q-placeholder text-right test"
:options="NumericSettings"
v-model="localDataField">
</vue-autonumeric>
</template>
</q-field>
Then in the data I have this settings object:
NumericSettings:
{
negativeSignCharacter: "-",
decimalCharacter: ",",
digitGroupSeparator: "",
unformatOnHover: false,
selectOnFocus: false
},
Hope this could help you a bit