vue-number-format
vue-number-format copied to clipboard
Easy formatted numbers, currency and percentage with input/directive mask for Vue.js
When you use large numbers, it doesn't format correct My config ``` { decimal: ",", separator: ".", prefix: "", suffix: "", precision: 2, masked: false, reverseFill: false, minimumFractionDigits: 2 }...
This can be seen in the playground https://vue-number-format.netlify.app/guide/play-ground.html steps to reproduce: * Clear the prefix field and leave a dot as the seperator (and comma as decimal) * Now start...
Hello, I am facing an issue with the component after upgrading from `3.27.0` to `3.28.0` where the formatting doesn't work while typing anymore. The reason is that I'm using a...
Hi everyone, I've successfully implemented the directive, and everything seems to be functioning as expected. However, I've noticed a small issue where automatic formatting is applied only to the first...
very similar behavior to #28. if precision is set to 0 it doesn't accept typing minus "-" if input field is empty. can still hit minus after typing the number...
Is it possible to prevent typing after reaching the precision limit just like how it's currently preventing typing any decimal number if precision=0 ? current behavior is that it removes...
Hello again! I am using @coders-tm/vue-number-format: "2.14.0" When inputting a decimal value, if the input has a value and I highlight the value and press `.`, I would expect the...
Hi, first of all, thank you for the amazing package. If you activate the `reverseFill` option, resetting the value to the allowed maximum fails. I tried it locally and on...