How do you specify a custom prefix for the transition classes applied by the <Transition>
built-in component?
Vue provides core libraries and comprehensive tooling support for building modern SPAs, including: * ______ ______ * ______ ______ ______ ______ * ______ ______ * ______ ______ * ______ ______ * ______ ______
What is the purpose of the $ref() macro in Vue’s Reactivity Transform?
How does the use of keyframe animations in CSS enhance class-based animations in Vue?
What are the two ways to define a plugin?
Type inference for props in Options API requires wrapping the component with ______.
What app config property can be used for reporting errors to tracking services?
There are two ways to register components: ______ and ______.
What does SFC stand for?
What are component 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.
____________ (SSR) is a method of prerendering your Vue’s HTML on the server. Once the JavaScript is downloaded, Vue will be able to “______” the application, or make it interactive.
What built-in component allows you to conditionally cache component instances when dynamically switching between multiple components?
What does Client Hydration refer to?
Update performance refers to?
What are some common examples of fallthrough attributes?
How does the Vue Reactivity Transform simplify the use of refs and reactive variables?
What is it called when the DOM structure of the pre-rendered HTML does not match the expected output of the client-side app?
What is the built-in component for animating the insertion, removal, and order change of elements or components that are rendered in a list?
How many times can a component be used?
What are the two forms of code reuse in Vue?
When is it recommended to begin writing tests?
Should role
attributes be used with landmark HTML elements?
How does the Reactivity Transform integrate with TypeScript, and what steps are needed to ensure proper typing?
What is the function that allows you to perform a side effect immediately while automatically tracking the effect’s reactive dependencies?
What is the name of the officially supported router for Vue projects?
What is an alternative approach to client-side routing for simple needs?
What are the life-cycle hooks for kept-alive components?
Do the dev-server and bundler perform type-checking with a Vite-based setup using TypeScript, created by create-vue
?
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 does reactivity mean in the context of Vue?
Can lifecycle hooks be registered asynchronously?
What is one of the most common performance issues in all frontend applications?
How can existing refs be converted to reactive variables using the $() macro?
What are the main benefits of Pinia compared to Vuex?
When does a computed property change?
With what kind of components is the built-in <KeepAlive>
component typically used with?
What are plugins?
What are whitebox tests?
What are components that only load from the server when they are needed known as?
What are the two built-in components that can help work with transitions and animations in response to changing state?
Should prop and event validation be used in production?
Computed properties are by default ______-only.
Can you use v-bind
with a style
attribute?
State-______ (full / less) logic involves managing state that changes over time.
Does Server Side Rendering (SSR) use reactivity on the server-side?
What is an example of using reactive data to animate an element’s background color in Vue?
What is the first question you should ask before using Server Side Rendering (SSR)?
What is the built-in component for applying animations when an element or component is entering and leaving the DOM?
Do warning checks incur performance overhead?
If your use case is sensitive to page load performance, you should avoid shipping it as a pure?
How do you create a local component?
Question: What are some limitations of using custom elements compared to Vue components?
What is the first thing to do when creating an app with Vue?
What method allows you to create animations in Vue by binding styles directly to reactive data properties?
Name a reason against global registration of a component!
Can you use Vue as a standalone script file?
When using a build step, we typically define each Vue component in a dedicated file using the ______ extension.
What is the most common example of wanting to render part of a component in a DOM node that exists outside the DOM hierarchy of that component?
If you want to have multiple slot outlets in a single component, what do you need to use?
Vue’s function for creating vnodes ______ is short for hyperscript - which means “JavaScript that produces HTML (hypertext markup language)”.
In Vue templates, JavaScript expressions can be used in the following positions:
How can watchers be utilized in Vue to animate numerical values smoothly over time?
What are the pros of runtime reactivity?
What is a more appropriate way to return a reversed array in a computed property than return numbers.reverse()
?
What are alternatives to the $emit()
method?
We can use the ______ directive, which we typically shorten to the @
symbol, to listen to DOM events and run some JavaScript when they’re triggered.
When using reactive provide / inject values, where is it recommended to keep any mutations to reactive state?
How can you do simple state management without Pinia or Vuex?
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.
How do you get the app to be rendered in the Dom?
RxJS is a library for working with ______ .
What is the function that is used to only load a component from the server when it’s needed?
Why might you choose to use watchers and animation libraries instead of CSS transitions for certain animations in Vue?
Can you use CSS transitions for elements whose styles are bound to reactive data in Vue?
This command will install and execute create-vue, the official Vue project scaffolding tool.
In Vue 3, ______ are used for reactive objects and ______ are used for refs.
What are blackbox tests?
How are components typically structured?
What is the purpose of state machines?
What is the <Suspense>
built-in component used for?
Which properties could the binding
argument contain?
What are your options how to build an application with Vue?
What is the benefit of using Vue to build standard Web Components?
When does a computed property run its getter function?
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?
In