Which syntax is used for text interpolation in templates?
What is the function you need to use when defining/exporting components in order to let TypeScript properly infer types inside component options?
How does the use of keyframe animations in CSS enhance class-based animations in Vue?
It is a convention to name composable functions with ______ (case) names that start with ______
How can you take advantage of the benefits of Single File Components (SFCs) while keeping templates, Javascript and styles in separate files?
What is the benefit of using Vue to build standard Web Components?
What is the command to install and execute create-vue, the official Vue project scaffolding tool?
What is the built-in component for animating the insertion, removal, and order change of elements or components that are rendered in a list?
Is it safe to use non-trusted templates in Vue?
____________ (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.
In Vue templates, JavaScript expressions can be used in the following positions:
What are whitebox tests?
Do component lifecycle hooks run on the server during Server Side Rendering (SSR)?
What does Client Hydration refer to?
What role do animation libraries like GSAP play when used with Vue watchers?
Answer:
How can Single File Component (SFC) blocks declare pre-processor languages?
What are end-to-end tests?
What are the life-cycle hooks for kept-alive components?
Do the dev-server and bundler perform type-checking with a Vite-based setup using TypeScript, created by create-vue
?
For complex logic that includes ______ data, it is recommended to use a ______ property.
What is the built-in component for applying animations when an element or component is entering and leaving the DOM?
What are plugins?
Does Server Side Rendering (SSR) use reactivity on the server-side?
What is an example of a CSS animation that can be triggered by adding a class in Vue?
Computed properties are by default ______-only.
What does reactivity mean in the context of Vue?
When does a computed property run its getter function?
Should prop and event validation be used in production?
What is the linting approach maintained by the Vue team?
Vue is a JavaScript ______ for building user ______
What is Declarative Rendering?
In Vue, the framework controls both the compiler and the runtime. We call this hybrid approach ______.
How is the reactive state declared with the Composition API?
Should role
attributes be used with landmark HTML elements?
Can lifecycle hooks be registered asynchronously?
Do template variables need to be escaped in Vue?
Where can you use a globally registered component?
In what situations might reactivity be lost with reactive variables, and how can the $$() macro prevent this?
When can a ref
be accessed?
For radio, checkbox and select options, the v-model
binding values are usually ______ strings (or booleans for checkbox)
How can existing refs be converted to reactive variables using the $() macro?
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?
What is the function that is used to only load a component from the server when it’s needed?
What is the name of the officially supported router for Vue projects?
What are the two forms of code reuse in Vue?
Does slot content have access to the state of the parent component?
Update performance refers to?
What are the two ways to let TypeScript infer types? Hint: it’s the code that follows after defineProps()
What is an example of using reactive data to animate an element’s background color in Vue?
In