【发布时间】:2021-05-10 07:24:40
【问题描述】:
我有以下计算属性:
maxQuantity() {
return (
(this.getProductSelection &&
this.getProductSelection.reduce(
(x, y) => x + parseInt(y.inventory_quantity),
0
)) ||
''
);
},
在我的模板中,我有:
<div>Maximum Quantity: {{ maxQuantity }}</div>
我可以调整产品并在 VueTools 中看到 maxQuantity 计算属性值发生变化,但在我刷新页面之前 UI 不会反映新值。
【问题讨论】:
标签: vue.js