Yuri Vinicius Didone de Lima

Results 2 comments of Yuri Vinicius Didone de Lima

You can show the input placeholder using the v-money directive instead of the component. `` Fiddle adapted from the `read.me`: https://jsfiddle.net/fnxub0yg/1/

@kimyeongbin As a workaround you could remove the mask manually: ```javascript methods: { uglyWorkaround() { this.value = parseFloat(this.maskedValue.replace(".", "").replace(",", ".")); // Do it where it makes sense for your case,...