0 votes
in VueJS by

What are the array detection mutation methods?

1 Answer

0 votes
by

As the name suggests, mutation methods modifies the original array. Below are the list of array mutation methods which trigger view updates.

  1. push()
  2. pop()
  3. shift()
  4. unshift()
  5. splice()
  6. sort()
  7. reverse()
...