Before I changed it to be static, this was the currency code I used -
| currency('£')
Currently, my input field does not include the currency -
<input v-bind:class="{'is-static': !foodItem.editing}" type="text" class="input" v-model="foodItem.price">
I have been trying to add the currency myself but it's causing issues. Any suggestions on how to properly include the currency in my input field? Thank you in advance.