美文网首页
vue循环对象添加新属性

vue循环对象添加新属性

作者: Hello杨先生 | 来源:发表于2019-12-06 09:49 被阅读0次

vdata.repos.forEach(function (res) { //循环向 a里面的每一个数据添加一个名为aa值为0的新属性
Vue.set(res, 'dialogVisible1', false)
Vue.set(res, 'visible1', false)
})

vdata.forEach((item,index)=>{
item.primary = '待审核' //按钮默认显示
})
//这个更简单

相关文章

网友评论

      本文标题:vue循环对象添加新属性

      本文链接:https://www.haomeiwen.com/subject/xnusgctx.html