vue table显示两位小数

<el-table-column align="center" label='推荐度' >
<template slot-scope="scope">
{{scope.row.recommend.toFixed(2) }}
</template>
</el-table-column>

原文地址:https://www.cnblogs.com/javalinux/p/15649142.html