vue-generators / vue-form-generator

:clipboard: A schema-based form generator component for Vue.js
MIT License
2.99k stars 531 forks source link

Decimal exponential problem #462

Open ScottEAdams opened 6 years ago

ScottEAdams commented 6 years ago
ScottEAdams commented 6 years ago

OK, easy fix is to set the default value using toFixed:

0.0000001.toFixed(7)
ScottEAdams commented 6 years ago

Nope, I take it back. Still a problem when changing values on the form. Any ideas?

ScottEAdams commented 6 years ago

So its possible to add the .toFixed in onChanged or set methods of the field but its a bit slow :/