(1/20) Which statement about 'ref sugar' (the $ref syntax) in Vue 3 is TRUE?
(2/20) Which advanced pattern might you use if you want a child component to conditionally override watchers from a parent-provided object in Vue 3, merging or disabling them at runtime?
(3/20) In Vue 3, if you create multiple watchers for the same reactive property, which statement best describes how they run?
(4/20) Which directive might you use if you want a chunk of template code to only be processed on the client side but ignored during server-side rendering (SSR)?
(5/20) How do watchers in a composable handle concurrency if multiple components use that composable simultaneously in Vue 3?
(6/20) If you want to create a Vue 3 SSR application manually (without Nuxt), which package do you typically use?
(7/20) How might you define watchers for concurrency if you need to respond to user input changes across multiple fields in a single callback in a Vue 3 SFC using <script setup>?
(8/20) How do you define watchers for concurrency in an async method within the Composition API if you want to run code each time a certain property changes, but also handle cancellation?
(9/20) Which statement about shallowRef is true in Vue 3 if you assign an object to shallowRef.value and mutate that object’s nested properties?
(10/20) Which method is used to capture unhandled errors globally in a Vue 3 app if they are not handled by onErrorCaptured in a component?
(11/20) Which approach might you use if you want to define watchers for concurrency that combine multiple fields in a single callback, and also track an external store state in Vue 3?
(12/20) How do you define watchers in a child component that references data from an external library instance passed via props, ensuring reactivity in Vue 3 if that library object is not reactive?
(13/20) In a single-file component, which section is used to declare custom blocks recognized by tooling or plugins (e.g., <docs> or <i18n>)?
(14/20) Which is a valid reason to define watchers in a Vue 3 SSR environment, even though SSR typically runs once per request?
(15/20) Which approach might you take if you want a single typed route param to represent either a numeric ID or a string slug in a Vue 3 app with TypeScript, but watchers must handle both conversions?
(16/20) Which advanced approach can you use to intercept an error from a child's serverPrefetch logic in Vue 3 SSR, potentially returning a custom SSR error page?
(17/20) How do you define watchers if you want to track changes to an array of objects for concurrency, but only reassign the entire array if an item changes in Vue 3?
(18/20) Which approach might you use to pass dynamic attributes (e.g., aria-label, role) to a child component’s root element if they are not declared as props?
(19/20) Which lifecycle hook in Vue 3 is especially useful for performing asynchronous tasks before server-side rendering completes?
(20/20) How do you define watchers in the Options API for concurrency if you want to handle an async method that cancels on new changes, in Vue 3?