__ob__: Observer这个后缀其实是Vue监控数据产生的,如果使用push添加数据就会出现__ob__: Observer
使用 JSON.parse(JSON.stringify(dataName))可解决
this.teams.push({
'name':this.teamName,
'grade':this.teamGrade
})
console.log(JSON.parse(JSON.stringify(this.teams)))
console.log(this.teams)