Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 616 Bytes

index.md

File metadata and controls

28 lines (20 loc) · 616 Bytes
category
Watch

watchArray

watchArray watches for the additions and removals in a list.

Usage

Similar to watch, but provides the added and removed elements to the callback function. Pass { deep: true } if the list is updated in place with push, splice, etc.

import { watchArray } from '@vueuse/core'

const list = ref([1, 2, 3])

watchArray(list, (newList, oldList, added, removed) => {
  console.log(newList) // [1, 2, 3, 4]
  console.log(oldList) // [1, 2, 3]
  console.log(added) // [4]
  console.log(removed) // []
})

onMounted(() => {
  list.value = [...list.value, 4]
})