Answers for "vue 3 composition api watch"

6

vue 3 composition api watch

// directly watching a ref

const selected = ref(props.selected)

watch(selected, (selection, prevSelection) => { 
   /* ... */ 
})
Posted by: Guest on August-25-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language