[Vuejs]-NumericTextBox has incorrect currency symbol

0👍

Not sure about vue.js but in jQuery, I handle it like this:

format: "€0"
...
format: "€0.0"
...
format: "€0.00"

Example: Kendo currency format

Leave a comment