(1/12) Which best describes the use of defineCustomElement in Vue 3?
(2/12) Which approach might you use to create a typed store in Vue 3 using a basic composable, ensuring no component re-renders if only certain fields change?
(3/12) Which approach might you take if you have watchers for concurrency referencing an external library instance in a child component, and want to ensure it’s not proxied in Vue 3?
(4/12) How do you prevent watchers from re-triggering themselves if you manipulate the same data inside their callback in Vue 3?
(5/12) Which statement about SSR with Vue 3 is TRUE?
(6/12) Which approach ensures watchers in a complex concurrency scenario do not cause memory leaks if you create them in watchEffect for multiple conditions in Vue 3?
(7/12) When using onServerPrefetch in a Vue 3 component, in what context does this hook get called?
(8/12) Which lifecycle hook in Vue 3 Composition API corresponds most closely to the old 'created' hook in the Options API?
(9/12) How do watchers in a composable handle concurrency if you store a setTimeout or an async request in watchEffect, but the user triggers new changes rapidly in Vue 3?
(10/12) Which approach might you use if you define watchers for concurrency referencing a store property in multiple components, and you want one place to handle the concurrency logic instead?
(11/12) When referencing a DOM element in <script setup> for a Canvas-based drawing library in Vue 3, how do you type the ref for concurrency watchers?
(12/12) What is the difference between using defineCustomElement and defineComponent in Vue 3?