[Vuejs]-Alternatives for multi currency web application

0👍

You will need to find the common exchange rates for the currency on the client. Re-calculating the prices in your database is inefficient. instead, you store the current trading value from a source and multiply that from your base value.

USD to RUPE is 1203% – simply multiplying the value by 1203will render it as the correct price

There are several sources that offer exchange rates, this could be an npm package like the following: https://www.npmjs.com/package/currency-converter

Leave a comment