Answer the question
In order to leave comments, you need to log in
How to add the value of 2 form fields in vue.js?
There is a form, it has 3 fields: length, height, area. That is, I multiply one by the other and calculate the third, with this order.
data: {
width: '500',
height: '500',
},
computed: {
summa: function() {
return this.width * this.height
}
......
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question