当前位置:   article > 正文

Vue之数组赋值_vue定义数组并赋值

vue定义数组并赋值

Vue不能检测以下变动的数组:

当你利用索引直接设置一个项时,例如:vm.items[indexOfItem] = newValue

当你修改数组的长度时,例如:vm.items.length = newLength

当第一种情况需求时,可以使用this.$set(this.arr,index,newVal)

Vue不能检测对象属性的添加和删除:

可以使用this.$set(this.person,‘age’,12)

 当需要添加多个对象时,Object.assign({},this.person,{age:12,name:'wee'})

参考网址   https://www.cnblogs.com/haishen/p/10601479.html
  • 1
  • 2
  • 3

在这里插入图片描述

  msg = this.storeList[1].value
          var msg2 = this.storeList[2].value
        /*  this.valueOfStore[0]=msg
          this.valueOfStore[1]=msg2
          */
          this.$set(this.valueOfStore,1,msg2)
          this.$set(this.valueOfStore,0,msg)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/68230
推荐阅读
相关标签
  

闽ICP备14008679号