What is the shorthand for attribute binding?
What are the two limitations of the reactive()
API?
If your use case is sensitive to page load performance, you should avoid shipping it as a pure?
There are two ways to register components: ______ and ______.
It is a convention to name composable functions with ______ (case) names that start with ______
Should role
attributes be used with landmark HTML elements?
What is an alternative to computed properties for displaying filtered/sorted lists, in cases where this is not feasible?
What is the primary benefit of using custom elements in Vue?
What are plugins?
How many times can a component be used?
Name examples for hook arguments!
How do you get the app to be rendered in the Dom?
What is the official, low-level component testing library for Vue?
The primary limitation of Static Site Generation (SSG)?
What’s a way to declare props?
How do you specify a custom prefix for the transition classes applied by the <Transition>
built-in component?
Vue is a JavaScript ______ for building user ______
How can you do simple state management without Pinia or Vuex?
How does the Reactivity Transform integrate with TypeScript, and what steps are needed to ensure proper typing?
How is the reactive state declared with the Options API?
Can you use Vue as a standalone script file?
What are the two built-in components that can help work with transitions and animations in response to changing state?
What is the <Suspense>
built-in component used for?
What are component 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.
What does a dynamic import()
call return?
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?
Can an emitted event be validated?
When is client-side routing particularly useful?
Should prop and event validation be used in production?
If you want to have multiple slot outlets in a single component, what do you need to use?
Computed properties are by default ______-only.
Where is routing done in Single Page Applications (SPAs)?
What does the runtime renderer do with virtual DOM trees?
Do warning checks incur performance overhead?
Do component lifecycle hooks run on the server during Server Side Rendering (SSR)?
What are benefits of choosing the Composition API?
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.
How does the use of keyframe animations in CSS enhance class-based animations in Vue?
When is it recommended to begin writing tests?
Update performance refers to?
Which watcher function automatically tracks every reactive property accessed during its synchronous execution?
What is the prefix for attributes provided by Vue?
What are the pros of runtime reactivity?
Where can you use a globally registered component?
What role do animation libraries like GSAP play when used with Vue watchers?
Answer:
What is it called when the DOM structure of the pre-rendered HTML does not match the expected output of the client-side app?
Which syntax is used for text interpolation in templates?
What are the primary advantages of Server Side Rendering (SSR)?
What function can be used to trigger a callback whenever a piece of reactive state changes, with the Composition API?
What type of values does the key
binding expect with v-for
?
How can you restructure your code when a component has become too large to navigate?
What does SFC stand for?
What are some common examples of fallthrough attributes?
To render a block, what type of value must the directive v-if
return?
Vue displays HTML through ______ or ______ . You can use either one, but Vue recommends ______ by default.
Is it recommended to use placeholders with form inputs?
What is an example of using reactive data to animate an element’s background color in Vue?
What does Client Hydration refer to?
What is the built-in component for applying animations when an element or component is entering and leaving the DOM?
What language is Vue 3 written in?
Which method does Vue provide to create custom elements using Vue component APIs?
Do user-created watcher callbacks get called before or after Vue component updates?
How many <script setup>
blocks can a Single File Component (SFC) contain?
Vue’s function for creating vnodes ______ is short for hyperscript - which means “JavaScript that produces HTML (hypertext markup language)”.
How does the $$() macro help retain reactivity when passing reactive variables to functions?
For radio, checkbox and select options, the v-model
binding values are usually ______ strings (or booleans for checkbox)
In what scenarios are Single File Components (SFCs) the recommended approach?
What is the first thing to do when creating an app with Vue?
How many <style>
blocks can a Single File Component (SFC) contain?
In what situations might reactivity be lost with reactive variables, and how can the $$() macro prevent this?
Does Server Side Rendering (SSR) use reactivity on the server-side?
What is the Virtual DOM?
What are the two core features of Vue?
How can Single File Component (SFC) blocks declare pre-processor languages?
Nowadays Google and Bing can index Javascript applications just fine, but they must be ___________?
What built-in component provides the ability to display top-level loading / error states while waiting on nested async dependencies to be resolved?
What are unit tests?
In Vue templates, JavaScript expressions can be used in the following positions:
Is it necessary to manually stop watcher functions?
Do the dev-server and bundler perform type-checking with a Vite-based setup using TypeScript, created by create-vue
?
In Vue 3, ______ are used for reactive objects and ______ are used for refs.
Why might you choose to use watchers and animation libraries instead of CSS transitions for certain animations in Vue?
What are end-to-end tests?
What is the purpose of the $ref() macro in Vue’s Reactivity Transform?
What does SSG stand for?
What is the function that is used to only load a component from the server when it’s needed?
What method allows you to create animations in Vue by binding styles directly to reactive data properties?
What is the test runner created by Vue / Vite team members that focuses on speed?
For complex logic that includes ______ data, it is recommended to use a ______ property.
RxJS is a library for working with ______ .
What is a more appropriate way to return a reversed array in a computed property than return numbers.reverse()
?
What does props drilling refer to?
What are the primary trade-offs when using Server Side Rendering (SSR)?
What is the name of the officially supported router for Vue projects?
What is the built-in component for animating the insertion, removal, and order change of elements or components that are rendered in a list?
Vue provides core libraries and comprehensive tooling support for building modern SPAs, including: * ______ ______ * ______ ______ ______ ______ * ______ ______ * ______ ______ * ______ ______ * ______ ______
Can you use v-bind
with a style
attribute?
How do you make comments in Single File Components (SFCs) ?