how to format number or money column in vue js here is my column
<el-table-column :label="columnHeader.amount" prop="amount" sortable min-width="140">
<template slot-scope="props">
<div v-if="!props.row.amount">-</div>
<div v-else style="text-transform: capitalize;">
{{ props.row.amount }}
</div>
</template>
</el-table-column>
in props.row.amount i want format be number like 10,000 any body can help