對(duì)象:
this.$set(obj, key, val)
Vue.set(obj, key, val)
this.$delete(obj, key)
Vue.delete(obj, key)
數(shù)組:
this.$set(arr, index, val)
Vue.set(arr, index, val)
arr.splice(index, 1, val)
對(duì)象:
this.$set(obj, key, val)
Vue.set(obj, key, val)
this.$delete(obj, key)
Vue.delete(obj, key)
數(shù)組:
this.$set(arr, index, val)
Vue.set(arr, index, val)
arr.splice(index, 1, val)