What is the <Suspense>
built-in component used for?
What does a dynamic import()
call return?
What is the purpose of tree flattening?
If your use case is sensitive to page load performance, you should avoid shipping it as a pure?
What are benefits of choosing the Composition API?
Should component tests mock child components?
What is the function you need to use when defining/exporting components in order to let TypeScript properly infer types inside component options?
The primary limitation of Static Site Generation (SSG)?
What is the function that is used to only load a component from the server when it’s needed?
How do you create a local component?
Can you use v-bind
with a style
attribute?
When does a computed property run its getter function?
Do user-created watcher callbacks get called before or after Vue component updates?
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 alternative distribution of Vue optimized for progressive enhancement?
What does SFC stand for?
What type of values does the key
binding expect with v-for
?
State-______ (full / less) logic involves managing state that changes over time.
How can you restructure your code when a component has become too large to navigate?
What’s a way to declare props?
What is the recommended IDE set up for Vue projects?
What is the command to install and execute create-vue, the official Vue project scaffolding tool?
When using a build step, we typically define each Vue component in a dedicated file using the ______ extension.
What are the primary trade-offs when using Server Side Rendering (SSR)?
What is an example of a CSS animation that can be triggered by adding a class in Vue?
When using reactive provide / inject values, where is it recommended to keep any mutations to reactive state?
Which syntax is used for text interpolation in templates?
What are whitebox tests?
Do warning checks incur performance overhead?
What is Declarative Rendering?
What should process.env.NODE_ENV
to be set to when building production files?
Update performance refers to?
What is a fallthrough attribute?
RxJS is a library for working with ______ .
What are blackbox tests?
What is the Virtual DOM?
Which method does Vue provide to create custom elements using Vue component APIs?
How do you pass template content to a child component?
How does the use of keyframe animations in CSS enhance class-based animations in Vue?
How do you make comments in Single File Components (SFCs) ?
What functions can be used to solve props drilling problems?
How can watchers be utilized in Vue to animate numerical values smoothly over time?
Do component lifecycle hooks run on the server during Server Side Rendering (SSR)?
What is the primary benefit of using custom elements in Vue?
What is the first question you should ask before using Server Side Rendering (SSR)?
How can you trigger animations on elements that are not entering or leaving the DOM in a Vue application?
For radio, checkbox and select options, the v-model
binding values are usually ______ strings (or booleans for checkbox)
How is the reactive state declared with the Composition API?
What are plugins?
What are the primary advantages of Server Side Rendering (SSR)?
Which properties could the binding
argument contain?
What are the two ways to let TypeScript infer types? Hint: it’s the code that follows after defineProps()
What is the prefix for attributes provided by Vue?
In