Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How can I convert cents to units in vuejs?

For example I have 1000 cents which would be 10 dollars, how can I do it?
this is my code, I have data taken from an API

    <b-button variant="outline-primary mb-2">
{{contract.reward_cents}} {{contract.reward_currency}}
</b-button>

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

i’m not sure if i understand you correctly. you just want contract.reward_cents to be converted to dollars?

you can do it like this:

{{ Number(contract.reward_cents)/100 }}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading