(1/40) Which statement about the difference between watchEffect and watchPostEffect in Vue 3 is correct?
(2/40) How do you define watchers for concurrency if you want to capture oldVal/newVal for an array’s object changes in Vue 3?
(3/40) Which advanced technique in Vue 3 can allow partial reactivity transforms for an object, turning only a subset of its properties into computed or watchers while ignoring the rest?
(4/40) If you have watchers that must not run during SSR but do need to run in client hydration to finalize DOM-based logic in Vue 3, what pattern might you use?
(5/40) How can watchers in Vue 3 track a local property in a Pinia store if that store is used by multiple components concurrently, each possibly changing the property quickly?
(6/40) What advantage does the new createApp API in Vue 3 offer, compared to Vue 2’s global Vue instance?
(7/40) Which statement about the flush options in watch() for Vue 3 is correct (pre, post, or sync)?
(8/40) When might you need to use shallowReadonly in Vue 3?
(9/40) Which statement about shallowReadonly in Vue 3 is correct regarding re-exporting complex data from a composable library?
(10/40) How might you optimize large lists for performance in Vue 3?
(11/40) In Vue 3, what does the 'patchFlag' concept refer to in the internal virtual DOM optimization?
(12/40) In the Composition API, how can you define a watcher that only triggers when the watched source changes from one non-undefined value to another?
(13/40) When you define watchers for concurrency referencing a route param plus a local state in the same callback in Vue 3, how does it handle changes that occur simultaneously?
(14/40) How does the new VNode static hoisting work in Vue 3 to improve performance?
(15/40) In Vue 3, how do you programmatically unmount a component that was created with createApp()?
(16/40) When calling defineAsyncComponent in Vue 3, which parameter allows you to specify a component to show while the async component is being loaded?
(17/40) When referencing watchers in the same flush cycle for multiple changes, how does Vue 3 handle the final callback calls if flush is set to 'pre'?
(18/40) Which new feature in Vue 3.3+ or future versions aims to allow partial hydration or partial activation of components during SSR, avoiding overhead for fully static sections?
(19/40) What is a key difference between 'watchEffect()' and a normal 'watch()' in Vue 3?
(20/40) When performing SSR (Server-Side Rendering) with Vue 3, which statement is TRUE?
(21/40) What does the 'flush: post' option do when you use watch() in the Composition API?
(22/40) When building a library with defineCustomElement in Vue 3, how do you handle global mixins or globalProperties that the standard createApp scenario usually provides?
(23/40) Which approach ensures watchers in a large Vue 3 SPA do not degrade performance if you only need to watch a subset of deeply nested changes?
(24/40) When building a custom element via defineCustomElement in Vue 3, how can you style it using the Single File Component’s <style> section?
(25/40) Which statement about watchers in a Vue 3 SSR environment is correct regarding how watchers run on the server?
(26/40) How can you reference the parent component instance if you are inside a deeply nested child using the Composition API in Vue 3?
(27/40) Which statement about watchPostEffect in Vue 3 is correct regarding flush timing?
(28/40) How do you create a custom render function for advanced usage in Vue 3?
(29/40) When building a custom directive in Vue 3, which directive lifecycle hook is triggered when the bound element is updated (but not unmounted) in the DOM?
(30/40) What is the main usage of the 'v-bind.sync' modifier in Vue 2 and how is it replaced in Vue 3?
(31/40) Which new feature in Vue 3.2+ can help you define advanced typed component options, like name or inheritAttrs, in a <script setup> block?
(32/40) Which lifecycle hook in Vue 3 allows you to intercept an error from a child component's lifecycle or rendering and optionally stop it from propagating further?
(33/40) How might watchers in a composable handle concurrency if you rely on the parent's route changes, and the composable is injected in multiple child components in Vue 3?
(34/40) Which lifecycle hook in Vue 3 Composition API is analogous to beforeRouteUpdate from Vue 2's router usage?
(35/40) How can watchers in Vue 3 handle concurrency if you define a single watch(() => multipleFields) approach for a multi-field object and the user changes multiple fields simultaneously?
(36/40) What’s a key advantage of Pinia over Vuex in Vue 3?
(37/40) In a Vue 3 SFC using <script setup lang="ts">, how do you define a method that can be called by the parent via a template ref?
(38/40) Which statement accurately describes how to access 'attrs' in the Composition API for a component that does not define certain props?
(39/40) What is the default flush timing for watch() in the Composition API if not specified?
(40/40) If you have a large array and only need to re-render when an item is added or removed (not mutated in place), which approach could optimize performance?