Answer the question
In order to leave comments, you need to log in
Best way to integrate BigNumber.js into Vue project?
How can BigNumber.js be integrated into the project for use in forms?
Option 1 : You can use computed getters and setters, where in setters wrap in value in BigNumber -
// emplate
<input v-model="fieldValue" />
// computed
fieldValue: {
get() { return this.form.count.toString() },
set(v) { this.form.count = new BigNumber(v) }
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question