(1/25) Which hook in the Composition API is primarily used to run code after a component’s data has updated and the DOM has been re-rendered?
(2/25) What is the difference between a method and a computed property when they both return the same result in a Vue 3 component?
(3/25) Which of the following is recommended for handling reusability across multiple components in Vue 3?
(4/25) Which statement describes how watchers differ from computed properties in Vue 3 regarding performance?
(5/25) When might you consider a 'functional component' in Vue 3?
(6/25) In Vue 3, which function would you use if you want to temporarily pause or isolate watchers, so they don’t run until you decide?
(7/25) Which special syntax in Vue 3 is recommended for writing a minimal boilerplate Composition API component, removing the need for return statements?
(8/25) Which part of a Vue single-file component is responsible for styles?
(9/25) Which directive do you use if you want to attach multiple event listeners to an element, for example a click and a mouseover, in Vue 3?
(10/25) Which statement about watchers created with watchEffect in Vue 3 is true?
(11/25) What is the main difference between using a method versus using a computed property for filtering an array in a Vue 3 component?
(12/25) Which composition function in Vue 3 is best suited for quickly executing side effects that need to run immediately, automatically tracking any reactive dependencies?
(13/25) When passing a function as a prop to a child component in Vue 3, how can the child component safely invoke it?
(14/25) Which lifecycle hook in Vue 3 might you use to add a cleanup function for an animation or subscription when the component is removed?
(15/25) Which directive in Vue 3 allows you to insert raw HTML into an element, but comes with security caveats?
(16/25) Which syntax in the <template> block allows you to assign a ref to a DOM element in Vue 3?
(17/25) Which directive is used to conditionally render a block in Vue 3 templates if a certain expression is truthy?
(18/25) In Vue 3, if you want to break up large logic from a single component so it can be reused, what is a recommended approach?
(19/25) If you want to apply transitions to a component that toggles in and out using v-if, which approach might you use in Vue 3?
(20/25) In Vue 3’s script setup, how do you specify that a function can be called from outside if you want to expose it as a component method?
(21/25) How do you define watchers in a Vue 3 <script setup> if you want a deep watch on an object prop named config?
(22/25) How do you declare a typed 'props' interface when using <script setup lang="ts"> in a Vue 3 Single File Component?
(23/25) If you want a single route in Vue Router 4 to handle multiple dynamic segments, like /products/:category/:id, which approach do you use?
(24/25) Which is a valid reason to prefer script setup over the classic setup() function in Vue 3 SFCs?
(25/25) Which statement best describes the role of 'scripts' in a Vue 3 project created via Vite or Vue CLI?