2👍
Vue doesn’t trigger a change for a modified array value, but does for splice
https://v2.vuejs.org/v2/guide/list.html#Mutation-Methods
Vue will automatically trigger for the following array functions:
- push()
- pop()
- shift()
- unshift()
- splice()
- sort()
- reverse()
- [Vuejs]-WebStorm Vue directives in HTML highlighting
- [Vuejs]-How can I able to display "No data" if there is no data in the json response in vue js?
Source:stackexchange.com