[Vuejs]-Why is my watcher not firing – vue3 setup function watching prop array for changes in number of items

1👍

watch(() => props.someArray, (val) => {
  console.log('asdasd', val)
  }, { deep: true }
)

is working,try this link

Leave a comment