(1/15) Which directive might you use if you want to load a large image only after the user triggers an event, setting an img src dynamically in Vue 3?
(2/15) What is a key reason to prefer using 'computed()' properties rather than methods for transforming data in a Vue 3 component?
(3/15) Which directive can you use if you want to toggle the CSS display property for an element based on a boolean condition, leaving it in the DOM hidden if false, in Vue 3?
(4/15) How do you pass a custom event from child to parent in Vue 3 using the Composition API?
(5/15) Which statement describes an advantage of the Composition API in Vue 3 over the Options API?
(6/15) Which special attribute can you add to a <script> block in a Single File Component to handle TypeScript compilation in a Vue 3 project?
(7/15) What is the difference between using a method in the Options API and returning a function from the setup() in the Composition API if they do the same logic?
(8/15) Which directive should you use to invoke a method when a user presses the 'Enter' key in an input field in Vue 3?
(9/15) What are 'slots' used for in Vue 3?
(10/15) What happens if you do not return a reactive variable from the setup() function in Vue 3?
(11/15) Which Vue 3 hook is invoked right before the initial rendering, allowing you to do something right before the DOM is first painted?
(12/15) In a Vue 3 + TypeScript project, how do you strongly type a ref that will store the result of an API call returning an array of objects?
(13/15) In Vue 3, how would you typically access props within onMounted() if using the standard Composition API setup syntax (not <script setup>)?
(14/15) What does defineAsyncComponent return in Vue 3?
(15/15) Which statement about TypeScript support in Vue 3 is correct?