Vue.js and v-money Mask - calculate monetary values












-1














I created a component with 3 fields, value 1 and value 2 and result with readonly. In them, I am applying currency formatting with v-money. However, I can not calculate the values. can anybody help me?



The following code:



Template



<v-text-field abel="value 1" v-model.lazy="item.value1" v-money="mask" validate-on-blur></v-text-field>
<v-text-field abel="value 2" v-model.lazy="item.value2" v-money="mask" validate-on-blur></v-text-field>
<v-text-field abel="result" v-model.lazy="calculatesValue" v-money="mask" validate-on-blur readonly></v-text-field>


Script



import {VMoney} from 'v-money'

directives: {money: VMoney},
data() {
return {
"item": {
"value1": 0,
"value2": 0,

},
"mask": {
"decimal": ',',
"thousands": '.',
"prefix": 'R$ ',
"suffix": '',
"precision": 2,
"masked": false
}
},
},
computed:{
calculatesValue(){
return this.item.value1 + this.item.value2;
},
}


Error:
enter image description here



when I try to remove the formatting using this.item.value1.replace (something) I get the error:
vue.runtime.esm.js?2b0e:587 [Vue warn]: Error in render: "TypeError: this.item.value1.replace is not a function"










share|improve this question
























  • the result field you want to edit it change its value manually? or just to show the sum of value1 and value2?
    – Boussadjra Brahim
    Nov 23 at 1:31










  • If you wan't read-only, I presume you could use :value="calculatesValue"instead of v-model.lazy="calculatesValue"? (But I don't see readonly attribute tho you mentioned it)
    – Traxo
    Nov 23 at 7:45












  • Hi. Thanks for the reply. I would just like to add up the values. However, since I am applying a mask in the value1 and value2 fields I can not calculate the values because they have been transformed into strings. How can I calculate the values?
    – Thiago de Melo Fontana
    Nov 25 at 16:40
















-1














I created a component with 3 fields, value 1 and value 2 and result with readonly. In them, I am applying currency formatting with v-money. However, I can not calculate the values. can anybody help me?



The following code:



Template



<v-text-field abel="value 1" v-model.lazy="item.value1" v-money="mask" validate-on-blur></v-text-field>
<v-text-field abel="value 2" v-model.lazy="item.value2" v-money="mask" validate-on-blur></v-text-field>
<v-text-field abel="result" v-model.lazy="calculatesValue" v-money="mask" validate-on-blur readonly></v-text-field>


Script



import {VMoney} from 'v-money'

directives: {money: VMoney},
data() {
return {
"item": {
"value1": 0,
"value2": 0,

},
"mask": {
"decimal": ',',
"thousands": '.',
"prefix": 'R$ ',
"suffix": '',
"precision": 2,
"masked": false
}
},
},
computed:{
calculatesValue(){
return this.item.value1 + this.item.value2;
},
}


Error:
enter image description here



when I try to remove the formatting using this.item.value1.replace (something) I get the error:
vue.runtime.esm.js?2b0e:587 [Vue warn]: Error in render: "TypeError: this.item.value1.replace is not a function"










share|improve this question
























  • the result field you want to edit it change its value manually? or just to show the sum of value1 and value2?
    – Boussadjra Brahim
    Nov 23 at 1:31










  • If you wan't read-only, I presume you could use :value="calculatesValue"instead of v-model.lazy="calculatesValue"? (But I don't see readonly attribute tho you mentioned it)
    – Traxo
    Nov 23 at 7:45












  • Hi. Thanks for the reply. I would just like to add up the values. However, since I am applying a mask in the value1 and value2 fields I can not calculate the values because they have been transformed into strings. How can I calculate the values?
    – Thiago de Melo Fontana
    Nov 25 at 16:40














-1












-1








-1







I created a component with 3 fields, value 1 and value 2 and result with readonly. In them, I am applying currency formatting with v-money. However, I can not calculate the values. can anybody help me?



The following code:



Template



<v-text-field abel="value 1" v-model.lazy="item.value1" v-money="mask" validate-on-blur></v-text-field>
<v-text-field abel="value 2" v-model.lazy="item.value2" v-money="mask" validate-on-blur></v-text-field>
<v-text-field abel="result" v-model.lazy="calculatesValue" v-money="mask" validate-on-blur readonly></v-text-field>


Script



import {VMoney} from 'v-money'

directives: {money: VMoney},
data() {
return {
"item": {
"value1": 0,
"value2": 0,

},
"mask": {
"decimal": ',',
"thousands": '.',
"prefix": 'R$ ',
"suffix": '',
"precision": 2,
"masked": false
}
},
},
computed:{
calculatesValue(){
return this.item.value1 + this.item.value2;
},
}


Error:
enter image description here



when I try to remove the formatting using this.item.value1.replace (something) I get the error:
vue.runtime.esm.js?2b0e:587 [Vue warn]: Error in render: "TypeError: this.item.value1.replace is not a function"










share|improve this question















I created a component with 3 fields, value 1 and value 2 and result with readonly. In them, I am applying currency formatting with v-money. However, I can not calculate the values. can anybody help me?



The following code:



Template



<v-text-field abel="value 1" v-model.lazy="item.value1" v-money="mask" validate-on-blur></v-text-field>
<v-text-field abel="value 2" v-model.lazy="item.value2" v-money="mask" validate-on-blur></v-text-field>
<v-text-field abel="result" v-model.lazy="calculatesValue" v-money="mask" validate-on-blur readonly></v-text-field>


Script



import {VMoney} from 'v-money'

directives: {money: VMoney},
data() {
return {
"item": {
"value1": 0,
"value2": 0,

},
"mask": {
"decimal": ',',
"thousands": '.',
"prefix": 'R$ ',
"suffix": '',
"precision": 2,
"masked": false
}
},
},
computed:{
calculatesValue(){
return this.item.value1 + this.item.value2;
},
}


Error:
enter image description here



when I try to remove the formatting using this.item.value1.replace (something) I get the error:
vue.runtime.esm.js?2b0e:587 [Vue warn]: Error in render: "TypeError: this.item.value1.replace is not a function"







javascript vue.js vuejs2 vue-component vuetify.js






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 23 at 1:18

























asked Nov 23 at 1:07









Thiago de Melo Fontana

244




244












  • the result field you want to edit it change its value manually? or just to show the sum of value1 and value2?
    – Boussadjra Brahim
    Nov 23 at 1:31










  • If you wan't read-only, I presume you could use :value="calculatesValue"instead of v-model.lazy="calculatesValue"? (But I don't see readonly attribute tho you mentioned it)
    – Traxo
    Nov 23 at 7:45












  • Hi. Thanks for the reply. I would just like to add up the values. However, since I am applying a mask in the value1 and value2 fields I can not calculate the values because they have been transformed into strings. How can I calculate the values?
    – Thiago de Melo Fontana
    Nov 25 at 16:40


















  • the result field you want to edit it change its value manually? or just to show the sum of value1 and value2?
    – Boussadjra Brahim
    Nov 23 at 1:31










  • If you wan't read-only, I presume you could use :value="calculatesValue"instead of v-model.lazy="calculatesValue"? (But I don't see readonly attribute tho you mentioned it)
    – Traxo
    Nov 23 at 7:45












  • Hi. Thanks for the reply. I would just like to add up the values. However, since I am applying a mask in the value1 and value2 fields I can not calculate the values because they have been transformed into strings. How can I calculate the values?
    – Thiago de Melo Fontana
    Nov 25 at 16:40
















the result field you want to edit it change its value manually? or just to show the sum of value1 and value2?
– Boussadjra Brahim
Nov 23 at 1:31




the result field you want to edit it change its value manually? or just to show the sum of value1 and value2?
– Boussadjra Brahim
Nov 23 at 1:31












If you wan't read-only, I presume you could use :value="calculatesValue"instead of v-model.lazy="calculatesValue"? (But I don't see readonly attribute tho you mentioned it)
– Traxo
Nov 23 at 7:45






If you wan't read-only, I presume you could use :value="calculatesValue"instead of v-model.lazy="calculatesValue"? (But I don't see readonly attribute tho you mentioned it)
– Traxo
Nov 23 at 7:45














Hi. Thanks for the reply. I would just like to add up the values. However, since I am applying a mask in the value1 and value2 fields I can not calculate the values because they have been transformed into strings. How can I calculate the values?
– Thiago de Melo Fontana
Nov 25 at 16:40




Hi. Thanks for the reply. I would just like to add up the values. However, since I am applying a mask in the value1 and value2 fields I can not calculate the values because they have been transformed into strings. How can I calculate the values?
– Thiago de Melo Fontana
Nov 25 at 16:40

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439583%2fvue-js-and-v-money-mask-calculate-monetary-values%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439583%2fvue-js-and-v-money-mask-calculate-monetary-values%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks