如何在jspdf上添加货币功能?

时间:2020-07-22 03:30:59

标签: javascript vue.js jspdf jspdf-autotable

我有一种货币功能,我总是在这样的Vue刀片中使用

 <td>{{ price | currency}}</td>

,将显示如下内容:

Rp. 5.000.000 

现在我使用jspdf导出价格,但我不知道如何使用这种货币

 let totals = this.datatotal 
  ......
    doc.text(String(totals), 102, finalY + 75) // it will be showing 5000000 but i need 5.000.000

我尝试

  doc.text(String(totals | currency), 102, finalY + 75) // 

但出现错误 ReferenceError:未定义货币”

有人可以帮忙吗?

0 个答案:

没有答案
相关问题