egomolka / vue-money-format

A Vue component that formats currency.
MIT License
15 stars 8 forks source link

Typo in readme example #6

Open flyingL123 opened 4 years ago

flyingL123 commented 4 years ago

From your usage example. This does not work:

<money-format :value="cost" 
      :locale='en' 
      :currency-code='USD' 
      :subunit-value=true 
      :hide-subunits=true>
</money-format>

It will not properly convert an integer value in cents to dollars. You need to change subunit-value to subunits-value.

egomolka commented 4 years ago

Thanks for catching this.