vue动态修改List集合的中的数据并
this.list.forEach(user => {const position = this.list.indexOf(user)// 修改list中的数据user.isOnline = truethis.$set(this.list, position, user)})...
·
this.list.forEach(user => {
const position = this.list.indexOf(user)
// 修改list中的数据
user.isOnline = true
this.$set(this.list, position, user)
})
更多推荐
已为社区贡献17条内容
所有评论(0)