(1/12) Which Composition API function allows you to watch multiple reactive sources at once?
(2/12) What is the recommended approach if you need to re-run a watch callback in Vue 3 while preserving the oldValue/newValue arguments each time?
(3/12) What is the correct usage of the 'unref()' function in Vue 3?
(4/12) What is the main difference between watchEffect() and watch() when you only pass a ref as the first argument in watch()?
(5/12) Which Vue Router feature lets you add custom data to a route definition, such as requiring authentication or specifying layout types?
(6/12) Which statement about using template refs in a Vue 3 Single File Component with <script setup> is correct?
(7/12) In Vue 3, how do you create a global mixin that logs a message whenever any component is mounted?
(8/12) When referencing route params that can be optional, how do you define watchers in Vue 3 to handle the possibility that route.params.userId might be undefined?
(9/12) If you need to watch multiple reactive variables in a single callback in Vue 3, how can you do it succinctly?
(10/12) What does the 'emits' option in a Vue 3 component define?
(11/12) Which statement describes a scenario where watchPostEffect in Vue 3 might be more appropriate than watchEffect?
(12/12) Which is an example of properly typing props using defineProps in a Vue 3 component with TypeScript?