Vue.js and v-money Mask - calculate monetary values
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:
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
add a comment |
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:
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
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 ofv-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
add a comment |
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:
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
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:
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
javascript vue.js vuejs2 vue-component vuetify.js
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 ofv-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
add a comment |
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 ofv-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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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 ofv-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