What are alternatives to the $emit()
method?
Can you use Vue as a standalone script file?
What are the two ways to let TypeScript infer types? Hint: it’s the code that follows after defineProps()
How can you do simple state management without Pinia or Vuex?
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?
How many times can a component be used?
What’s a way to declare props?
How can watchers be utilized in Vue to animate numerical values smoothly over time?
What is the function that allows you to perform a side effect immediately while automatically tracking the effect’s reactive dependencies?
What built-in component provides the ability to display top-level loading / error states while waiting on nested async dependencies to be resolved?
In what situations might reactivity be lost with reactive variables, and how can the $$() macro prevent this?
How does Vue handle passing complex data to custom elements that cannot be passed through DOM attributes?
____________ (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.
When using reactive provide / inject values, where is it recommended to keep any mutations to reactive state?
How can existing refs be converted to reactive variables using the $() macro?
What is the official webpack-based toolchain for Vue?
What is the command to install and execute create-vue, the official Vue project scaffolding tool?
Do template variables need to be escaped in Vue?
What is the name of the alternative distribution of Vue optimized for progressive enhancement?
How does Vue’s reactivity system facilitate state-driven animations without direct DOM manipulation?
Do component lifecycle hooks run on the server during Server Side Rendering (SSR)?
When can a ref
be accessed?
Can lifecycle hooks be registered asynchronously?
RxJS is a library for working with ______ .
This command will install and execute create-vue, the official Vue project scaffolding tool.
What does SFC stand for?
How many <script setup>
blocks can a Single File Component (SFC) contain?
What is a “Composable”?
Type inference for props in Options API requires wrapping the component with ______.
Is it necessary to manually stop watcher functions?
What is one of the most common performance issues in all frontend applications?
How does the Reactivity Transform integrate with TypeScript, and what steps are needed to ensure proper typing?
What are component tests?
Can you use CSS transitions for elements whose styles are bound to reactive data in Vue?
Where can you use a globally registered component?
What does a dynamic import()
call return?
In