How can you trigger animations on elements that are not entering or leaving the DOM in a Vue application?
What does Client Hydration refer to?
What built-in component allows you to conditionally cache component instances when dynamically switching between multiple components?
How do you make comments in Single File Components (SFCs) ?
What is the name of the alternative distribution of Vue optimized for progressive enhancement?
What is the test runner created by Vue / Vite team members that focuses on speed?
What problems arise when destructuring props with defineProps() in Vue, and how does the Reactivity Transform solve them?
What does a dynamic import()
call return?
What does props drilling refer to?
Name a reason against global registration of a component!
What is one of the most common performance issues in all frontend applications?
What’s a way to declare props?
Update performance refers to?
Vue is a JavaScript ______ for building user ______
What are the two built-in components that can help work with transitions and animations in response to changing state?
What are component tests?
Is it recommended to use placeholders with form inputs?
What are some common examples of fallthrough attributes?
Composition API covers the following APIs: ______ - directly create reactive state, computed state and watchers. ______ - programmatically hook into the component lifecycle. ______ - leverage Vue’s dependency injection system.
Computed properties are by default ______-only.
For complex logic that includes ______ data, it is recommended to use a ______ property.
How can you do simple state management without Pinia or Vuex?
What is a “Composable”?
What is the best practice for return values of composables?
Vue displays HTML through ______ or ______ . You can use either one, but Vue recommends ______ by default.
When is client-side routing particularly useful?
How many <script setup>
blocks can a Single File Component (SFC) contain?
____________ (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 are the two forms of code reuse in Vue?
When using a build step, we typically define each Vue component in a dedicated file using the ______ extension.
Is it necessary to manually stop watcher functions?
How can you enable the Reactivity Transform in a Vue project using Vite?
Do user-created watcher callbacks get called before or after Vue component updates?
What are the two ways to define a plugin?
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?
What is an alternative approach to client-side routing for simple needs?
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.
Nowadays Google and Bing can index Javascript applications just fine, but they must be ___________?
Does slot content have access to the state of the parent component?
What is the function you need to use when defining/exporting components in order to let TypeScript properly infer types inside component options?
What is the official, low-level component testing library for Vue?
What is the <Suspense>
built-in component used for?
How does Vue handle passing complex data to custom elements that cannot be passed through DOM attributes?
Do the dev-server and bundler perform type-checking with a Vite-based setup using TypeScript, created by create-vue
?
When can a ref
be accessed?
In