(1/15) In the Vue 3 Composition API, what does the returned value of setup() represent?
(2/15) Which of the following is NOT a lifecycle hook in the Vue 3 Composition API?
(3/15) In a Vue 3 Single File Component, how do you ensure that certain styles only apply globally instead of being scoped to the component?
(4/15) Which statement best describes how you might handle multiple root-level elements in a <template> in Vue 3?
(5/15) Which approach helps avoid watchers if you only need to do something once after the component is first rendered in Vue 3 Composition API?
(6/15) Which directive do you use if you want to conditionally render an element in Vue 3 by removing it from the DOM entirely when the condition is false?
(7/15) In Vue 3, how can you pass in a default slot's content and still provide a named slot content to a child component?
(8/15) Which feature in Vue 3 helps you debug and inspect reactive dependencies in the browser?
(9/15) How do you disable the automatic attribute inheritance onto a child component's root element in the Options API of Vue 3?
(10/15) What is the typical reason for using provide/inject in Vue 3, rather than passing props down multiple layers?
(11/15) In the Options API for Vue 3, which lifecycle hooks correspond to the old beforeMount and mounted from Vue 2?
(12/15) How do you define watchers for the children array in a <transition-group> if you want to log every time the list items reorder in Vue 3?
(13/15) Which pattern is recommended for conditionally applying multiple inline styles in Vue 3 templates?
(14/15) Which directive might you use if you want an element to only appear in the DOM if a condition is true, but remain in the DOM toggled by CSS display otherwise in Vue 3?
(15/15) Which statement about watchers in the Composition API is correct when you pass a ref or reactive getter as the first argument?