美文网首页
vue2.x 对象 数组更新

vue2.x 对象 数组更新

作者: Hush____ | 来源:发表于2022-06-28 17:20 被阅读0次

    对象:

    this.$set(obj, key, val)
    Vue.set(obj, key, val)
    
    this.$delete(obj, key)
    Vue.delete(obj, key)
    

    数组:

    this.$set(arr, index, val)
    Vue.set(arr, index, val)
    
    arr.splice(index, 1, val)
    

    相关文章

      网友评论

          本文标题:vue2.x 对象 数组更新

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