What are the advantages of using reactive variables with the Reactivity Transform over traditional refs?
In what situations might reactivity be lost with reactive variables, and how can the $$() macro prevent this?
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?
What is a skip link?
Do the dev-server and bundler perform type-checking with a Vite-based setup using TypeScript, created by create-vue?
How does the Vue Reactivity Transform simplify the use of refs and reactive variables?
What are component tests?
What built-in component allows you to conditionally cache component instances when dynamically switching between multiple components?
In Vue 3, ______ are used for reactive objects and ______ are used for refs.
When does a computed property change?
How can you restructure your code when a component has become too large to navigate?
Vue is a JavaScript ______ for building user ______
With what kind of components is the built-in <KeepAlive> component typically used with?
To render a block, what type of value must the directive v-if return?
What is the benefit of using Vue to build standard Web Components?
How does Vue handle passing complex data to custom elements that cannot be passed through DOM attributes?
What are the primary trade-offs when using Server Side Rendering (SSR)?
What is the name of the official VSCode extension that provides TypeScript support inside Vue SFCs, along with many other great features?
If a child component’s root element already has existing class or style attributes, does passing class or style fallthrough attributes merge or replace the attributes from the root element?
When using a build step, we typically define each Vue component in a dedicated file using the ______ extension.
What does a dynamic import() call return?
What built-in component provides the ability to display top-level loading / error states while waiting on nested async dependencies to be resolved?
What are the two ways to define a plugin?
For complex logic that includes ______ data, it is recommended to use a ______ property.
Nowadays Google and Bing can index Javascript applications just fine, but they must be ___________?
What are benefits of choosing the Composition API?
How is the reactive state declared with the Composition API?
What is the official webpack-based toolchain for Vue?
What is the name of the alternative distribution of Vue optimized for progressive enhancement?
In what scenarios are Single File Components (SFCs) the recommended approach?
What is the first thing to do when creating an app with Vue?
What functions can be used to solve props drilling problems?
RxJS is a library for working with ______ .
Name a reason against global registration of a component!
What is the state management library maintained by the Vue team?
When using reactive provide / inject values, where is it recommended to keep any mutations to reactive state?
How does the $$() macro help retain reactivity when passing reactive variables to functions?
Page load performance refers to?
You can ______ ______: one composable function can call one or more other composable functions. This enables us to compose complex logic using small, isolated units.
Can you use CSS transitions for elements whose styles are bound to reactive data in Vue?
How does the $() macro assist with destructuring refs in Vue’s Reactivity Transform?
What is the built-in component for animating the insertion, removal, and order change of elements or components that are rendered in a list?
In