When loading Vue from CDNs, what is the suffix of the Vue files that are pre-minified and have development-only code branches removed?
In Vue, the framework controls both the compiler and the runtime. We call this hybrid approach ______.
Page load performance refers to?
Where is routing done in Single Page Applications (SPAs)?
What does reactivity mean in the context of Vue?
The primary limitation of Static Site Generation (SSG)?
When is it recommended to begin writing tests?
What are the two built-in components that can help work with transitions and animations in response to changing state?
How do you create a local component?
What are the life-cycle hooks for kept-alive components?
How many <script setup> blocks can a Single File Component (SFC) contain?
What problems arise when destructuring props with defineProps() in Vue, and how does the Reactivity Transform solve them?
Do warning checks incur performance overhead?
How do you specify a custom prefix for the transition classes applied by the <Transition> built-in component?
Why might you choose to use watchers and animation libraries instead of CSS transitions for certain animations in Vue?
What is a skip link?
Where can you use a globally registered component?
What is the shorthand for attribute binding?
What is the official, low-level component testing library for Vue?
What is the best practice for return values of composables?
What built-in component allows you to conditionally cache component instances when dynamically switching between multiple components?
Where can you try out SFCs without installing anything on your machine?
Should prop and event validation be used in production?
How do you make comments in Single File Components (SFCs) ?
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.
What is the official webpack-based toolchain for Vue?
What does Client Hydration refer to?
What is the benefit of using Vue to build standard Web Components?
Can you use v-bind with a style attribute?
What do you call a component that encapsulates logic but does not render anything by itself?
What are some common examples of fallthrough attributes?
How is the reactive state declared with the Options API?
What is the primary benefit of using custom elements in Vue?
What is the purpose of the $ref() macro in Vue’s Reactivity Transform?
With Vue 3 + TypeScript, which is preferred, Vite or Webpack?
How do you get the app to be rendered in the Dom?
You can ______ ______: one composable function can call one or more other composable functions. This enables us to compose complex logic using small, isolated units.
Is it recommended to use placeholders with form inputs?
Which method does Vue provide to create custom elements using Vue component APIs?
What do landmarks do?
Which properties could the binding argument contain?
How does Vue’s reactivity system facilitate state-driven animations without direct DOM manipulation?
What is an example of a CSS animation that can be triggered by adding a class in Vue?
Can you use CSS transitions for elements whose styles are bound to reactive data in Vue?
What is the purpose of state machines?
What is the built-in component for applying animations when an element or component is entering and leaving the DOM?
When can a ref be accessed?
What are the two limitations of the reactive() API?
What is an example of using reactive data to animate an element’s background color in Vue?
Do component lifecycle hooks run on the server during Server Side Rendering (SSR)?
When working with the options API, the ______ hook can be used to run code after the component has finished the initial rendering and created the DOM nodes.
What app config property can be used for reporting errors to tracking services?
What is the function that allows you to perform a side effect immediately while automatically tracking the effect’s reactive dependencies?
What is the recommended tool for E2E tests?
Event names provide an automatic case transformation. We emit a ______ (case) event, but can listen for it using a ______ (case) listener in the parent.
What are plugins?
RxJS is a library for working with ______ .
In Vue 3, ______ are used for reactive objects and ______ are used for refs.
How can Single File Component (SFC) blocks declare pre-processor languages?
For complex logic that includes ______ data, it is recommended to use a ______ property.
How are components typically structured?
There are two ways to register components: ______ and ______.
In