2.5.16
https://jsfiddle.net/jesse_y/obbL7s1k/
change, children component not updateupdate, children component updateclick change, children component update
children component not update
maybe not a bug, I test 2.* and 1.*(not all), it not work in those version.
is it a bug? if not why?
thanks for your time.
this.numbers[0]++
is equal to
this.numbers[0] = this.numbers[0] + 1
which is already discussed in the guide.
You should do this instead:
this.$set(this.numbers, 0, this.numbers[0] + 1)
@Justineo thanks!
Most helpful comment
is equal to
which is already discussed in the guide.
You should do this instead: