Which method does Vue provide to create custom elements using Vue component APIs?
How many <style>
blocks can a Single File Component (SFC) contain?
When does a computed property run its getter function?
Do warning checks incur performance overhead?
When is client-side routing particularly useful?
How can you trigger animations on elements that are not entering or leaving the DOM in a Vue application?
What built-in component allows you to conditionally cache component instances when dynamically switching between multiple components?
What is a fallthrough attribute?
What is Declarative Rendering?
What are the pros of runtime reactivity?
For complex logic that includes ______ data, it is recommended to use a ______ property.
What are unit tests?
Vue is a JavaScript ______ for building user ______
Where can you use a globally registered component?
When using TypeScript with Vue, how would you declare that foo
is a required string and bar
is a number?
What does SFC stand for?
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 recommended tool for E2E tests?
What are some common examples of fallthrough attributes?
Which is cheaper and easier to deploy, Server Side Rendering (SSR) or Static Site Generation (SSG)?
Should prop and event validation be used in production?
What is a skip link?
What is the function you need to use when defining/exporting components in order to let TypeScript properly infer types inside component options?
What function can be used to trigger a callback whenever a piece of reactive state changes, with the Composition API?
Name a reason against global registration of a component!
What functions can be used to solve props drilling problems?
How does the Vue Reactivity Transform simplify the use of refs and reactive variables?
What is the name of the official VSCode extension that provides TypeScript support inside Vue SFCs, along with many other great features?
What are the primary trade-offs when using Server Side Rendering (SSR)?
What is the first question you should ask before using Server Side Rendering (SSR)?
Where can you try out SFCs without installing anything on your machine?
What are the two built-in components that can help work with transitions and animations in response to changing state?
What are the two forms of code reuse in Vue?
How does the $$() macro help retain reactivity when passing reactive variables to functions?
What is the recommended IDE set up for Vue projects?
What are the advantages of using reactive variables with the Reactivity Transform over traditional refs?
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?
Vue provides core libraries and comprehensive tooling support for building modern SPAs, including: * ______ ______ * ______ ______ ______ ______ * ______ ______ * ______ ______ * ______ ______ * ______ ______
It is a convention to name composable functions with ______ (case) names that start with ______
What app config property can be used for reporting errors to tracking services?
What are the functions called, that give users the opportunity to add their own code at specific stages of a components initialization and cleanup?
What are the two ways to let TypeScript infer types? Hint: it’s the code that follows after defineProps()
What’s a way to declare props?
Does slot content have access to the state of the parent component?
When using reactive provide / inject values, where is it recommended to keep any mutations to reactive state?
How do you create a local component?
What does reactivity mean in the context of Vue?
What is it called when the DOM structure of the pre-rendered HTML does not match the expected output of the client-side app?
How do you get the app to be rendered in the Dom?
What does SSR stand for?
Event names provide an automatic case transformation. We emit a ______ (case) event, but can listen for it using a ______ (case) listener in the parent.
How many <script setup>
blocks can a Single File Component (SFC) contain?
How can you enable the Reactivity Transform in a Vue project using Vite?
Do template variables need to be escaped in Vue?
In what scenarios are Single File Components (SFCs) the recommended approach?
Should role
attributes be used with landmark HTML elements?
What are the two ways to define a plugin?
What is the built-in component for animating the insertion, removal, and order change of elements or components that are rendered in a list?
What is the official webpack-based toolchain for Vue?
What are blackbox tests?
When is it recommended to begin writing tests?
Custom directives should only be used when the desired functionality can only be achieved via ______ ______ ______. Prefer declarative templating using built-in directives such as v-bind
when possible.
In what situations might reactivity be lost with reactive variables, and how can the $$() macro prevent this?
What is an example of a CSS animation that can be triggered by adding a class in Vue?
What are the main benefits of Pinia compared to Vuex?
What built-in component provides the ability to display top-level loading / error states while waiting on nested async dependencies to be resolved?
Can an emitted event be validated?
What are the life-cycle hooks for kept-alive components?
How do you pass template content to a child component?
With what kind of components is the built-in <KeepAlive>
component typically used with?
Is it necessary to manually stop watcher functions?
When loading Vue from CDNs, what is the suffix of the Vue files that are pre-minified and have development-only code branches removed?
How can you restructure your code when a component has become too large to navigate?
To render a block, what type of value must the directive v-if
return?
What should process.env.NODE_ENV
to be set to when building production files?
If your use case is sensitive to page load performance, you should avoid shipping it as a pure?
What is the Virtual DOM?
____________ (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.
Update performance refers to?
What are alternatives to the $emit()
method?
RxJS is a library for working with ______ .
This command will install and execute create-vue, the official Vue project scaffolding tool.
Is it preferred to create watchers synchronously or asynchronously?
What is the prefix for attributes provided by Vue?
The primary limitation of Static Site Generation (SSG)?
How are components typically structured?
When does a computed property change?
Can you use Vue as a standalone script file?
What is the linting approach maintained by the Vue team?
What are whitebox tests?
How many times can a component be used?
What are benefits of choosing the Composition API?
How many top level <template>
blocks can a Single File Component (SFC) contain?
Can you use CSS transitions for elements whose styles are bound to reactive data in Vue?
How can you instruct Vue to treat certain elements as custom elements and skip component resolution?
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?
How can existing refs be converted to reactive variables using the $() macro?
What is the function that allows you to perform a side effect immediately while automatically tracking the effect’s reactive dependencies?
What language is Vue 3 written in?