在computed下 我使用
...mapGetters({
'employeeRenderData': 'getEmployeeRenderData',
})
调用时
value: t.employeeRenderData.employeeSum //可以调到
但是
value: t.employeeRenderData.employeeSum.total //就会报错
Cannot read property 'total' of undefined
在template中{{这里面调用也是同样的问题 求大神帮忙}}
value: t.employeeRenderData.employeeSum && t.employeeRenderData.employeeSum.total
可能你初始时employeeSum是不存在的, 那么你再调用employeeSum.total 就报错, 做下容错就好了