vue ElementUi表中保留两位小数

在ElementUi表格中使用

 <el-table-column
    prop="testValue"
    label="信息"
    align="center">
    <template slot-scope="scope">
       {{ fun(scope.row.testValue) }}
    </template>
</el-table-column>
methods: {
  fun(val){
    return Number(val).toFixed(2);
  },
}
posted @ 2021-06-24 15:26  ssjd  阅读(3310)  评论(0编辑  收藏  举报