[Vuejs]-How can I convert cents to units in vuejs?

0๐Ÿ‘

โœ…

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 }}

Leave a comment