怎么把分化成元,并且保留两位小数,用vue来做

     <el-table-column  prop="amount"
                        label="申请提现金额"
                        width="120" 
                        align="center">
        <template scope="scope">
          {{ scope.row.amount | filterMoney }}
        </template>
      </el-table-column>
  filters: {
    filterMoney (num) {
      return (num / 100).toFixed(2)
    }
  },

25岁生日后的第一天,写代码,写代码,写代码.....

注意身体,多运动,多喝水-_-

原文地址:https://www.cnblogs.com/antyhouse/p/10042935.html