Do template variables need to be escaped in Vue?
Where can you use a globally registered component?
When does a computed property change?
What are the functions called, that give users the opportunity to add their own code at specific stages of a components initialization and cleanup?
The v-for
directive requires a special syntax in the form of ______ ______ ______ where ______ is the source data array and item
is an alias for the array element being iterated on.
When is client-side routing particularly useful?
What is the primary benefit of using custom elements in Vue?
For complex logic that includes ______ data, it is recommended to use a ______ property.
How many <script setup>
blocks can a Single File Component (SFC) contain?
Should prop and event validation be used in production?
What’s a way to declare props?
What language is Vue 3 written in?
When can a ref
be accessed?
When does a computed property run its getter function?
When is it recommended to begin writing tests?
There are two ways to register components: ______ and ______.
What is the built-in component to render a part of a component’s template into a DOM node that exists outside the DOM hierarchy of that component?
How can watchers be utilized in Vue to animate numerical values smoothly over time?
What does SFC stand for?
Do component lifecycle hooks run on the server during Server Side Rendering (SSR)?
Is it necessary to manually stop watcher functions?
Type inference for props in Options API requires wrapping the component with ______.
What is a more appropriate way to return a reversed array in a computed property than return numbers.reverse()
?
What is a skip link?
What is an example of using reactive data to animate an element’s background color in Vue?
How can you take advantage of the benefits of Single File Components (SFCs) while keeping templates, Javascript and styles in separate files?
What built-in component allows you to conditionally cache component instances when dynamically switching between multiple components?
What problems arise when destructuring props with defineProps() in Vue, and how does the Reactivity Transform solve them?
Which method does Vue provide to create custom elements using Vue component APIs?
In