我只是想问一下,在计算的 getter 中分配一些属性是否可以?
props:
invoice:
type: Object
computed:
total:
@invoice.subtotal = { some expression }
我想这样做,因为发票对象在少数其他组件上共享,并且这些组件需要来自小计组件的计算数据。
我只是想问一下,在计算的 getter 中分配一些属性是否可以?
props:
invoice:
type: Object
computed:
total:
@invoice.subtotal = { some expression }
我想这样做,因为发票对象在少数其他组件上共享,并且这些组件需要来自小计组件的计算数据。