自学内容网 自学内容网

记录一次element 表格中input不可编辑的原因

场景:从子组件中把列表数据显示到表格,表格中的数据input不可编辑。

    showCouponSelect(couponSelect) {
      this.benefit.couponSelect = JSON.parse(JSON.stringify(couponSelect))
      console.log('-----showCouponSelect-------')
      console.log(this.benefit.couponSelect)
      this.selectedCount = couponSelect.length
    },

把this.benefit.couponSelect = couponSelect 改成
this.benefit.couponSelect = JSON.parse(JSON.stringify(couponSelect)).前端大佬说 element 监测不到数据的变动,需要深拷贝对象。


原文地址:https://blog.csdn.net/vvvbird/article/details/143621433

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!