Hi!
If I have two inputs using the same property, the one with vue-numeric is not updated.
For example
<input type="text" v-model="invoice.total">
<vue-numeric v-model="invoice.total"></vue-numeric>
Total is: {{invoice.total}}
The value entered in the regular input tag is only updated in the html but not on the vue-numeric. Checking with dev tools, I see that amount is 0 and value is changing inside the VueNumeric component
Any Ideas?