jonathanpmartins / v-money3

Vue3 currency input/directive mask
MIT License
103 stars 27 forks source link

Using numbers in suffix #61

Open jakjr opened 2 years ago

jakjr commented 2 years ago

Hello, I am trying to active this result: "R$ 999,00"

The cents should be fixed, so this is my config:

` config: { prefix: 'R$ ', suffix: ",00", thousands: '.', decimal: '', precision: 0, disableNegative: true, disabled: false, min: null, max: null, allowBlank: true, minimumNumberOfCharacters: 0, }

` The result is: "R$ 999,", omitting the both zeros in the suffix.

Using letters in suffix works like expected: "R$ 999,AA".

jonathanpmartins commented 2 years ago

Yep, that's really not supported right now. A pull request will be apreciated!