vue-numeric icon indicating copy to clipboard operation
vue-numeric copied to clipboard

Input field component to display a formatted currency value based on Vue.js

Results 25 vue-numeric issues
Sort by recently updated
recently updated
newest added

This PR fixes a vite build issue: vite build fails while trying to optimise its dependencies because accounting-js does not export default. Using named exports fixes the issue and allows...

Can you add the ability to somehow restrict numeric input to only '.' or ',"? Because when I set the delimiter as '.' and try to enter 2,55 it resets...

> If you are reporting bugs please fill the form below otherwise feel free to delete the form. ## Expected Behavior When the user inputs a value, the correct value...

> Make sure to read the [contribution guidelines](https://github.com/kevinongko/vue-numeric/blob/master/.github/CONTRIBUTING.md) before submitting PR.

Hi, I'm working on a project that uses Vue 3 and Typescript. I was wondering if you could include a type declaration module (.d.ts file) in the package. I'd be...

This PR allows developers to bind any listener they like to the input element, rather than just specific ones. This is really useful for things like preventing the enter key...

This resolves #53 and #57 by allowing `null` values to be passed in and not have it replaced with a `0` value. Currently, the `emptyValue` attribute is only able to...

## Expected Behavior If you input a **String** with "20000.00" as value the output value will be 20.000,00 ## Actual Behavior Right now when you input a **String** with "20000.00"...

Added a function to handle the raw input value before formatting. It can be very useful to remove some characters before formatting. For example, change a period to a comma....

## Expected Behavior Form submission stops and you get notified what input field is faulty. empty-value accepting `null` or `""` to make input value empty. ## Actual Behavior Form goes...

bug