data 中只能直接放值,不能引用其他地方的值或者 data 内的值,只能通过 computed 实现
data()=>{ return { a: 1 sum: this.a //不能引用值 } }
Vue——data中的属性规范
原文:https://www.cnblogs.com/angle-yan/p/13456366.html