problem description
WeChat Mini Programs has no computed, only data
related codes
Page({
data: {
text: "This is page data."
},
onLoad: function(options) {
},
onReady: function() {
},
...
// computed
})
scene
for example, when it comes to shopping cart settlement, the total amount needs to be calculated from time to time, and the most natural thing is to use the computed attribute, but in the absence of this attribute, how do you solve it?