(1/15) What is the recommended way to pass data from a parent component to a child component in Vue 3?
(2/15) Which directive might you use if you want to attach a dynamic event name stored in a variable called eventName to an element in Vue 3?
(3/15) Which approach in Vue 3 is recommended for conditionally applying multiple classes to the same element based on different boolean conditions?
(4/15) Which directive is used to render a list based on an array in Vue 3?
(5/15) When using <transition> for a single element or <transition-group> for a list in Vue 3, what do you typically rely on for the animations?
(6/15) Which configuration in Vite-based Vue 3 projects typically stores environment variables like VITE_API_URL?
(7/15) Which lifecycle hook in Vue 3 is an ideal place to remove event listeners or cancel API calls before the component is destroyed?
(8/15) In Vue 3, when using script setup, where should you place import statements for components used in your template?
(9/15) Which directive would you use to attach an event listener in a Vue template?
(10/15) Which combination correctly sets up a custom v-model binding in a Vue 3 child component?
(11/15) What is the recommended syntax in Vue 3 for listening to a custom event named 'toggle' on a child component in a parent’s template?
(12/15) Which directive might you use to assign a function that triggers on a blur event in a Vue 3 template?
(13/15) How do you designate a component as globally available in a Vue 3 app so you don’t need to import it in every child that uses it?
(14/15) Which statement about <keep-alive> in Vue 3 is correct?
(15/15) In Vue 3, what are the default prop/event names for v-model if you don't customize them in a child component?