What are the primary advantages of Server Side Rendering (SSR)?
Should component tests mock child components?
What is the command to install and execute create-vue, the official Vue project scaffolding tool?
What is an alternative to computed properties for displaying filtered/sorted lists, in cases where this is not feasible?
What are components that only load from the server when they are needed known as?
What are the pros of runtime reactivity?
Which method does Vue provide to create custom elements using Vue component APIs?
Event names provide an automatic case transformation. We emit a ______ (case) event, but can listen for it using a ______ (case) listener in the parent.
Do template variables need to be escaped in Vue?
What is the Virtual DOM?
With Vue 3 + TypeScript, which is preferred, Vite or Webpack?
How does Vue’s reactivity system facilitate state-driven animations without direct DOM manipulation?
Which watcher function automatically tracks every reactive property accessed during its synchronous execution?
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 the two forms of code reuse in Vue?
What role do animation libraries like GSAP play when used with Vue watchers?
Answer:
When does a computed property change?
In