我想给我的对象添加一个“时间”属性,但是出了点问题我已经尝试过某种方式,例如Vue.set,this.$set或以直接方式添加属性(object.newProperty = 'XXX'),但这没有用this.allOrderList.forEach((item) => { this.$set(item, 'time', this.getTime()) Vue.set(item, 'time', this.getTime()) item.time = this.getTime()})getTime () { return Math.round(Math.random()*(60 - 30)+30)}有人可以帮我解决吗?谢谢你
添加回答
举报
0/150
提交
取消