[Vuejs]-Bind dynamically value to component's props

0👍

I believe you are missing a colon on the binding property:

<custom-component :currency="calculateCurrency" ></custom-component>

Adding that before “currency” will allow for data-binding

Leave a comment