0
Probably a reactivity issue.
Instead of
this.chartOptions.series[0].data = newVal;
Try
this.$set(this.chartOptions.series[0], 'data', newVal)
- [Vuejs]-How to add input field on click more than once
- [Vuejs]-AVA Testing Vue – Whitespace is the difference
Source:stackexchange.com