天天看点

vue过滤器处理金额

{{item.realMoney|filterMoney}}
           

filters: {

filterMoney(value) {

return (value/100).toFixed(2);

}

},