math.js 使用
1、安装npm install --save mathjs2、引入main.js中import{create,all}from'mathjs'constmathjs=create(all)mathjs.config({number:'BigNumber',precision:64})Vue.prototype.$math=m...
·
1、安装
npm install --save mathjs
2、引入
main.js中
import { create, all } from 'mathjs'
const mathjs = create(all)
mathjs.config({
number: 'BigNumber',
precision: 64
})
Vue.prototype.$math = mathjs
3、使用
this.$math.evaluate(‘0.1+0.2’).toString() // 0.3 此方法不会产生科学技术法
this.$math.format(this.$math.evaluate('1000*1000')) // 1e+6
更多推荐
已为社区贡献1条内容
所有评论(0)