(1/15) How do you define a ref with an initial value of an empty array in Vue 3 using the Composition API?


(2/15) What does the useAttrs() function in the Composition API return?


(3/15) Which feature in Vue 3 allows you to run code that automatically tracks and responds to any reactive dependencies it touches?


(4/15) Which directive might you use if you want to quickly iterate over an object’s keys and values in a template, e.g., <div v-for="(value, key) in myObject" :key="key"> in Vue 3?


(5/15) Which approach might you use to quickly toggle a style or class if your logic only requires display toggling in Vue 3?


(6/15) If you must compute a value based on multiple reactive variables in Vue 3, which composition function is typically used?


(7/15) Which of the following statements about Teleport in Vue 3 is correct?


(8/15) What is the primary use case for the 'teleport' feature in Vue 3?


(9/15) What is the recommended way to bundle a production-ready Vue 3 app using the latest tooling?


(10/15) How does the Vue 3 compiler handle plain text or static attributes in the template for performance?


(11/15) Which library is typically recommended by the Vue core team as the next-generation state management solution for Vue 3?


(12/15) Which directive do you use if you want to create dynamic components using the <component :is="someComponent" /> element in Vue 3?


(13/15) How do you apply two-way binding on a custom component using Vue 3’s v-model syntax?


(14/15) Which approach helps avoid repeating the same watchers or computed logic across multiple components in Vue 3?


(15/15) Which directive is used to bind attributes or props dynamically in Vue 3?