Answer the question
In order to leave comments, you need to log in
How to work in Vue in computed with setters?
I’ll say right away: I read the documentation, but I didn’t fully understand it ..
So ..
Imagine that I have a computer:
selectedCarNumber: {
get: function () {
return 0
},
set: function (value) {
// что писать, чтобы поменять значение у возвращаемого числа get ?
}
},
Answer the question
In order to leave comments, you need to log in
data() {
return {
number: 0
};
},
selectedCarNumber: {
get: function () {
return this.number;
},
set: function (value) {
this.number = value;
}
},
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question