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, '') })