JS精度问题,解决方案 math.js

JS精度问题    Vue中使用 解决方案 math.js

npm install mathjs

import { create, all } from 'mathjs'
const config = { 
  number: 'BigNumber',
  precision: 20
}
const math = create(all, config);
export default {
  methods: {
    
     // 除
    numberExcept: function (arg1, arg2) {
      return math.divide(arg1, arg2);
    },
    //乘
    numberRide: function (arg1, arg2) {      
      return math.multiply(arg1, arg2);
    },
    //加
    numberAdd:function (arg1,arg2) {
    return math.add(arg1, arg2);
    }
    //减
    numberSub:function (arg1,arg2) {
    return math.add(arg1, -arg2);
    }
  }
}
上一篇:方便mac os 10.9系统中phpstorm配置php运行环境


下一篇:Pycharm在运行过程中,查看每个变量的方法(show variables)跟终端一样显示变量