How do I get the return value of this function to be inserted into the field where you are running KeyUp?
<input type="text" v-model="valor_calc_dinheiro" v-on:keyup.stop.prevent="mascara_dinheiro($event.target.value)" ref="valor_calc_dinheiro">
mascara_dinheiro : function(valor){
v=valor.replace(/(\d{1})(\d{1,2})$/,"$1.$2")
alert(v);
},