(1/15) Which directive might you use if you want to avoid an element updating on subsequent reactive changes, effectively freezing its content after initial render in Vue 3?
(2/15) How do you make sure watchers in a child component don’t run before the component is actually mounted in Vue 3?
(3/15) In a Vue 3 SFC, if you define style with <style scoped>, which mechanism ensures that these styles only affect the component’s markup?
(4/15) What would you typically use if you need to keep the state of a component alive when switching between components with v-if in Vue 3?
(5/15) In Vue 3, which keyword is used to expose reactive data to the component template when using the Composition API?
(6/15) What is a key reason to use the watch() function over watchEffect() in Vue 3?
(7/15) Which file type is a typical Vue single-file component stored as?
(8/15) In Vue 3, how do you render a component only if a certain condition is true, and otherwise render an alternative component within the same template block?
(9/15) Which directive can be used for one-time interpolation, preventing the element from updating on subsequent re-renders in Vue 3?
(10/15) Which statement about watchers with immediate: true is correct in Vue 3?
(11/15) Which directive might you use if you only want to render a block once in Vue 3, preventing it from updating on subsequent reactivity changes?
(12/15) Which statement about watchEffect in Vue 3 is TRUE regarding how dependencies are tracked?
(13/15) Which directive in Vue 3 do you typically use to programmatically set the text of an element, ignoring HTML interpretation?
(14/15) In Vue 3, which directive is typically used to handle an @click event in a shorter syntax?
(15/15) If you see an error like "Cannot read properties of undefined (reading 'value')" in a Vue 3 script setup, what is a likely cause?