当前位置: 首页 > 工具软件 > accounting.js > 使用案例 >

数据格式化-------货币格式化------accounting.js

白君之
2023-12-01

accounting.js网址:点击打开链接

npm  install  accounting  --save

import Vue from 'vue'
import accounting from 'accounting'
Vue.prototype.$accounting = accounting;
Vue.filter("currency", function(value) { return Vue.prototype.$accounting.formatMoney(value, '') })
Vue.filter("Number", function(value) { return Vue.prototype.$accounting.formatNumber(value, '') })


 类似资料: